From c54a18815490127a87e58b5dee0dd370dc33e1f0 Mon Sep 17 00:00:00 2001 From: Alex Date: Mon, 30 Oct 2023 09:17:37 -0500 Subject: [PATCH] fix(web): sidebar setting not updating when there is a new property added to the data payload (#4708) --- web/src/lib/stores/preferences.store.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/lib/stores/preferences.store.ts b/web/src/lib/stores/preferences.store.ts index db11223ede..05a90b2380 100644 --- a/web/src/lib/stores/preferences.store.ts +++ b/web/src/lib/stores/preferences.store.ts @@ -52,7 +52,7 @@ export interface SidebarSettings { sharing: boolean; } -export const sidebarSettings = persisted('sidebar-settings', { +export const sidebarSettings = persisted('sidebar-settings-1', { people: false, sharing: true, });