diff --git a/invokeai/frontend/web/src/features/lora/components/ParamLora.tsx b/invokeai/frontend/web/src/features/lora/components/ParamLora.tsx index 23459e9410..a32fee5f2c 100644 --- a/invokeai/frontend/web/src/features/lora/components/ParamLora.tsx +++ b/invokeai/frontend/web/src/features/lora/components/ParamLora.tsx @@ -22,7 +22,7 @@ const ParamLora = (props: Props) => { ); const handleReset = useCallback(() => { - dispatch(loraWeightChanged({ id: lora.id, weight: 1 })); + dispatch(loraWeightChanged({ id: lora.id, weight: 0.75 })); }, [dispatch, lora.id]); const handleRemoveLora = useCallback(() => { diff --git a/invokeai/frontend/web/src/features/lora/store/loraSlice.ts b/invokeai/frontend/web/src/features/lora/store/loraSlice.ts index c9b290eb2d..1469207077 100644 --- a/invokeai/frontend/web/src/features/lora/store/loraSlice.ts +++ b/invokeai/frontend/web/src/features/lora/store/loraSlice.ts @@ -8,7 +8,7 @@ export type Lora = { }; export const defaultLoRAConfig: Omit = { - weight: 1, + weight: 0.75, }; export type LoraState = {