diff --git a/frontend/src/features/system/store/systemSlice.ts b/frontend/src/features/system/store/systemSlice.ts index a9ed5dbdcd..f5f5ade54d 100644 --- a/frontend/src/features/system/store/systemSlice.ts +++ b/frontend/src/features/system/store/systemSlice.ts @@ -49,7 +49,7 @@ export interface SystemState toastQueue: UseToastOptions[]; searchFolder: string | null; foundModels: InvokeAI.FoundModel[] | null; - openModel: string | null, + openModel: string | null; } const initialSystemState: SystemState = { @@ -273,7 +273,7 @@ export const { setProcessingIndeterminateTask, setSearchFolder, setFoundModels, - setOpenModel + setOpenModel, } = systemSlice.actions; export default systemSlice.reducer;