diff options
| author | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-03-19 16:04:01 +0900 |
|---|---|---|
| committer | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-03-19 16:04:01 +0900 |
| commit | 2dc2d2e4fee549deac1709a13a9528745510321f (patch) | |
| tree | 200b46bb140d7a36de65ad789442f8c5674716ca /packages/frontend/src/store.ts | |
| parent | refactor(frontend): router refactoring (diff) | |
| download | misskey-2dc2d2e4fee549deac1709a13a9528745510321f.tar.gz misskey-2dc2d2e4fee549deac1709a13a9528745510321f.tar.bz2 misskey-2dc2d2e4fee549deac1709a13a9528745510321f.zip | |
refactor
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 de99b233d6..fc1d463674 100644 --- a/packages/frontend/src/store.ts +++ b/packages/frontend/src/store.ts @@ -11,13 +11,13 @@ import { hemisphere } from '@@/js/intl-const.js'; import type { DeviceKind } from '@/utility/device-kind.js'; import type { Plugin } from '@/plugin.js'; import { miLocalStorage } from '@/local-storage.js'; -import { Storage } from '@/pizzax.js'; +import { Pizzax } from '@/lib/pizzax.js'; import { DEFAULT_DEVICE_KIND } from '@/utility/device-kind.js'; /** * 「状態」を管理するストア(not「設定」) */ -export const store = markRaw(new Storage('base', { +export const store = markRaw(new Pizzax('base', { accountSetupWizard: { where: 'account', default: 0, |