mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
fix(ui): isLocal erroneously hardcoded
This commit is contained in:
parent
f5a775ae4e
commit
e9b80cf28f
@ -79,15 +79,15 @@ export const addSocketQueueItemStatusChangedEventListener = (startAppListening:
|
|||||||
title: getTitleFromErrorType(error_type),
|
title: getTitleFromErrorType(error_type),
|
||||||
status: 'error',
|
status: 'error',
|
||||||
duration: null,
|
duration: null,
|
||||||
|
updateDescription: isLocal,
|
||||||
description: (
|
description: (
|
||||||
<ErrorToastDescription
|
<ErrorToastDescription
|
||||||
errorType={error_type}
|
errorType={error_type}
|
||||||
errorMessage={error_message}
|
errorMessage={error_message}
|
||||||
sessionId={sessionId}
|
sessionId={sessionId}
|
||||||
isLocal={false}
|
isLocal={isLocal}
|
||||||
/>
|
/>
|
||||||
),
|
),
|
||||||
updateDescription: isLocal ? true : false,
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user