From 7b963fb85d2d2e0cfbb273edea3fa5857793f758 Mon Sep 17 00:00:00 2001 From: Segu <51497552+Segu-g@users.noreply.github.com> Date: Sun, 13 Feb 2022 14:44:03 +0900 Subject: [PATCH] =?UTF-8?q?state=E3=81=AB=E9=96=93=E9=81=95=E3=81=88?= =?UTF-8?q?=E3=81=A6store=E3=81=8C=E5=85=A5=E3=81=A3=E3=81=A6=E3=81=84?= =?UTF-8?q?=E3=82=8B=E7=8A=B6=E6=85=8B=E3=82=92=E4=BF=AE=E6=AD=A3=20(#699)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/store/index.ts | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) 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,