From 2dc2d2e4fee549deac1709a13a9528745510321f Mon Sep 17 00:00:00 2001 From: syuilo <4439005+syuilo@users.noreply.github.com> Date: Wed, 19 Mar 2025 16:04:01 +0900 Subject: refactor --- packages/frontend/src/store.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'packages/frontend/src/store.ts') 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, -- cgit v1.2.3-freya