[fix] building errors 2/3

This commit is contained in:
2025-03-14 19:13:32 +08:00
parent d0872af38c
commit 8907160c3b
5 changed files with 79 additions and 18 deletions

View File

@@ -42,10 +42,7 @@ export const addLaunchOption = (option: string) => {
if (toolStore.state.launchOptions.length >= 10) {
return
}
toolStore.state.launchOptions = [
...toolStore.state.launchOptions,
option,
]
toolStore.state.launchOptions = [...toolStore.state.launchOptions, option]
}
export const resetToolStore = () => {