diff --git a/src/store/index.ts b/src/store/index.ts index 93f3c38b54..93a986e30d 100644 --- a/src/store/index.ts +++ b/src/store/index.ts @@ -14,7 +14,12 @@ import { VoiceVoxStoreOptions, } from "./type"; import { commandStoreState, commandStore } from "./command"; -import { audioStoreState, audioStore, audioCommandStore } from "./audio"; +import { + audioStoreState, + audioStore, + audioCommandStore, + audioCommandStoreState, +} from "./audio"; import { projectStoreState, projectStore } from "./project"; import { uiStoreState, uiStore } from "./ui"; import { settingStoreState, settingStore } from "./setting"; @@ -156,7 +161,7 @@ export const store = createStore({ ...commandStoreState, ...projectStoreState, ...settingStoreState, - ...audioCommandStore, + ...audioCommandStoreState, ...indexStoreState, ...presetStoreState, ...proxyStoreState,