diff --git a/invokeai/frontend/web/src/features/parameters/hooks/useRecallParameters.ts b/invokeai/frontend/web/src/features/parameters/hooks/useRecallParameters.ts index d7fcc2c9a4..9045646ad5 100644 --- a/invokeai/frontend/web/src/features/parameters/hooks/useRecallParameters.ts +++ b/invokeai/frontend/web/src/features/parameters/hooks/useRecallParameters.ts @@ -328,6 +328,7 @@ export const useRecallParameters = () => { } if (!loraModels || !loraModels.entities) { + parameterNotSetToast(); return; } @@ -340,14 +341,16 @@ export const useRecallParameters = () => { }); if (!matchingId) { -return; -} + parameterNotSetToast(); + return; + } const fullLoRA = loraModels.entities[matchingId]; if (!fullLoRA) { -return; -} + parameterNotSetToast(); + return; + } dispatch(loraRecalled({ ...fullLoRA, weight: lora.weight }));