diff --git a/invokeai/frontend/web/src/features/lora/store/loraSlice.ts b/invokeai/frontend/web/src/features/lora/store/loraSlice.ts index b3c63f2e0f..ab1b140a7c 100644 --- a/invokeai/frontend/web/src/features/lora/store/loraSlice.ts +++ b/invokeai/frontend/web/src/features/lora/store/loraSlice.ts @@ -35,7 +35,7 @@ export const loraSlice = createSlice({ }, loraRecalled: (state, action: PayloadAction) => { const { model_name, id, base_model, weight } = action.payload; - state.loras[id] = { id, model_name, base_model, weight }; + state.loras[id] = { id, model_name, base_model, weight, isEnabled: true }; }, loraRemoved: (state, action: PayloadAction) => { const id = action.payload;