From 56191e48b521179d95073853681e20f842a021fa Mon Sep 17 00:00:00 2001 From: Jess Robinson Date: Wed, 17 Apr 2024 11:53:47 +0000 Subject: [PATCH] fix(index): Re-prompt local index download on each device Makes more sense if we'd like users to use the index everywhere. Also makes testing easier (as the user can't undo this one) --- 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 54ef89eb0..ff3254fa0 100644 --- a/src/app/app.component.ts +++ b/src/app/app.component.ts @@ -319,7 +319,6 @@ export class AppComponent implements OnInit, AfterViewInit, CanvasTableSelectLis // sidebar this.showPopularRecipients = prefs.get(`${this.preferenceService.prefGroup}:${LOCAL_STORAGE_SHOW_POPULAR_RECIPIENTS}`) === 'true'; this.avatarSource = prefs.get(`${this.preferenceService.prefGroup}:avatarSource`); - this.localSearchIndexPrompted = prefs.get(`${this.preferenceService.prefGroup}:localSearchPromptDisplayed`) === 'true'; this.preferences = prefs; });