Skip to content

Commit

Permalink
stateに間違えてstoreが入っている状態を修正 (#699)
Browse files Browse the repository at this point in the history
  • Loading branch information
Segu-g authored Feb 13, 2022
1 parent bc99cee commit 7b963fb
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/store/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down Expand Up @@ -156,7 +161,7 @@ export const store = createStore<State, AllGetters, AllActions, AllMutations>({
...commandStoreState,
...projectStoreState,
...settingStoreState,
...audioCommandStore,
...audioCommandStoreState,
...indexStoreState,
...presetStoreState,
...proxyStoreState,
Expand Down

0 comments on commit 7b963fb

Please sign in to comment.