mirror of
https://github.com/immich-app/immich
synced 2025-11-14 17:36:12 +00:00
chore(web): update to newer persisted store package name (#17094)
This commit is contained in:
parent
6419ac74af
commit
9f0dbfc150
5 changed files with 17 additions and 16 deletions
|
|
@ -1,7 +1,7 @@
|
|||
import { browser } from '$app/environment';
|
||||
import { Theme, defaultLang } from '$lib/constants';
|
||||
import { getPreferredLocale } from '$lib/utils/i18n';
|
||||
import { persisted } from 'svelte-local-storage-store';
|
||||
import { persisted } from 'svelte-persisted-store';
|
||||
import { get } from 'svelte/store';
|
||||
|
||||
export interface ThemeSetting {
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { persisted } from 'svelte-local-storage-store';
|
||||
import { persisted } from 'svelte-persisted-store';
|
||||
import { writable } from 'svelte/store';
|
||||
|
||||
export const savedSearchTerms = persisted<string[]>('search-terms', [], {});
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { persisted } from 'svelte-local-storage-store';
|
||||
import { persisted } from 'svelte-persisted-store';
|
||||
import { writable } from 'svelte/store';
|
||||
|
||||
export enum SlideshowState {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue