1
0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2024-12-29 15:11:58 +00:00

fix(web): sidebar setting not updating when there is a new property added to the data payload (#4708)

This commit is contained in:
Alex 2023-10-30 09:17:37 -05:00 committed by GitHub
parent c77ba46d60
commit c54a188154
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -52,7 +52,7 @@ export interface SidebarSettings {
sharing: boolean;
}
export const sidebarSettings = persisted<SidebarSettings>('sidebar-settings', {
export const sidebarSettings = persisted<SidebarSettings>('sidebar-settings-1', {
people: false,
sharing: true,
});