Browse Source

@uppy/angular: remove unnecessary `console.log` call (#4139)

Fixes: https://github.com/transloadit/uppy/issues/4138
Antoine du Hamel 2 years ago
parent
commit
0a4ac6e3f9

+ 0 - 1
packages/@uppy/angular/projects/uppy/angular/src/lib/utils/wrapper.ts

@@ -35,7 +35,6 @@ export abstract class UppyAngularWrapper<PluginType extends UIPlugin  = UIPlugin
     }
 
     uninstall(uppy = this.uppy): void {
-        console.log('Uninstalling...')
         uppy.removePlugin(this.plugin!);
     }