diff options
Diffstat (limited to 'packages/frontend/src/store.ts')
| -rw-r--r-- | packages/frontend/src/store.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/frontend/src/store.ts b/packages/frontend/src/store.ts index 750ca69133..87b2637a64 100644 --- a/packages/frontend/src/store.ts +++ b/packages/frontend/src/store.ts @@ -381,7 +381,7 @@ export const store = markRaw(new Pizzax('base', { avatar: false, urlPreview: false, code: false, - } as Record<string, boolean>, + }, }, enableSeasonalScreenEffect: { where: 'device', @@ -483,7 +483,7 @@ export class ColdDeviceStorage { lightTheme, // TODO: 消す(preferに移行済みのため) darkTheme, // TODO: 消す(preferに移行済みのため) syncDeviceDarkMode: true, // TODO: 消す(preferに移行済みのため) - plugins: [] as Plugin[], // TODO: 消す(preferに移行済みのため) + plugins: [] as (Omit<Plugin, 'installId'> & { id: string })[], // TODO: 消す(preferに移行済みのため) }; public static watchers: Watcher[] = []; |