From c9f1408e7b81246dcef27a5d63c217ba91d11e9e Mon Sep 17 00:00:00 2001 From: Gion-Andri Cantieni Date: Thu, 14 Dec 2023 18:01:17 +0100 Subject: [PATCH] fix: do not always show pwa screen --- src/app/app.component.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/app/app.component.ts b/src/app/app.component.ts index d7238bb..bf13e7e 100644 --- a/src/app/app.component.ts +++ b/src/app/app.component.ts @@ -143,7 +143,6 @@ export class AppComponent implements OnInit { } private checkIfThirdTimeAppOpened(): boolean { - return true; let appOpenTimes = +(localStorage.getItem(LOCALSTORAGE_APP_OPEN_TIMES) || 0); appOpenTimes++; localStorage.setItem(LOCALSTORAGE_APP_OPEN_TIMES, appOpenTimes + '');