From 8d4ad0de4edd26ce42ef1fa573ae04b20be71a95 Mon Sep 17 00:00:00 2001 From: blessedcoolant <54517381+blessedcoolant@users.noreply.github.com> Date: Thu, 29 Dec 2022 07:23:31 +1300 Subject: [PATCH] Formatting Pass --- frontend/src/features/system/store/systemSlice.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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;