Formatting Pass

This commit is contained in:
blessedcoolant 2022-12-29 07:23:31 +13:00
parent e4b2f815e8
commit 8d4ad0de4e

View File

@ -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;