record panel

This commit is contained in:
StyleZhang 2024-02-29 17:33:49 +08:00
parent 1840d05a37
commit bafdc510d6
1 changed files with 1 additions and 1 deletions

View File

@ -19,6 +19,6 @@ export const useStore = create<State & Action>(set => ({
setShowRunHistory: showRunHistory => set(() => ({ showRunHistory })),
showFeatures: false,
setShowFeatures: showFeatures => set(() => ({ showFeatures })),
runStaus: 'finished',
runStaus: '',
setRunStaus: runStaus => set(() => ({ runStaus })),
}))