Commit 7ba58875 authored by Ben Hayward's avatar Ben Hayward

removed a console log

parent cdfb21ba
No related merge requests found
Pipeline #70163965 canceled with stages
in 2 minutes and 36 seconds
......@@ -40,7 +40,6 @@ import { ClientMetaService } from "../../../../../common/services/client-meta.se
})
export class Activity implements OnInit {
minds = window.Minds;
activity: any;
......
......@@ -21,7 +21,6 @@ export class Upload {
post(endpoint: string, files: Array<any> = [], data: any = {}, progress: Function = () => { return; }, xhr: XMLHttpRequest = null) {
files.map(file => {
if(file.size > 1900000000) {
console.dir(file);
throw new Error('File exceeds 1.9GB maximum size. Please try compressing your file.');
}
});
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment