diff --git a/src/app/app.component.ts b/src/app/app.component.ts index 6d06ff5b35..aae5120c41 100644 --- a/src/app/app.component.ts +++ b/src/app/app.component.ts @@ -176,8 +176,6 @@ export class AppComponent implements OnInit { } @HostListener('window:beforeinstallprompt', ['$event']) onBeforeInstallPrompt(e: any) { - console.log('onBeforeInstallPrompt'); - if (IS_ELECTRON || loadFromLs(LS_WEB_APP_INSTALL)) { return; } diff --git a/src/app/features/google/google-sync-cfg/google-sync-cfg.component.ts b/src/app/features/google/google-sync-cfg/google-sync-cfg.component.ts index cf049ee4e8..78e787a8ab 100644 --- a/src/app/features/google/google-sync-cfg/google-sync-cfg.component.ts +++ b/src/app/features/google/google-sync-cfg/google-sync-cfg.component.ts @@ -48,7 +48,6 @@ export class GoogleSyncCfgComponent implements OnInit, OnDestroy { ngOnInit() { this._subs.add(this._configService.googleDriveSyncCfg$.subscribe((cfg) => { - console.log(cfg); this.cfg = {...cfg}; this.tmpSyncFile = this.cfg.syncFileName; this._cd.detectChanges();