Skip to content

Commit

Permalink
fix: do not always show pwa screen
Browse files Browse the repository at this point in the history
  • Loading branch information
gion-andri committed Dec 14, 2023
1 parent 6116eb8 commit c9f1408
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 + '');
Expand Down

0 comments on commit c9f1408

Please sign in to comment.