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),
|
||||
status: 'error',
|
||||
duration: null,
|
||||
updateDescription: isLocal,
|
||||
description: (
|
||||
<ErrorToastDescription
|
||||
errorType={error_type}
|
||||
errorMessage={error_message}
|
||||
sessionId={sessionId}
|
||||
isLocal={false}
|
||||
isLocal={isLocal}
|
||||
/>
|
||||
),
|
||||
updateDescription: isLocal ? true : false,
|
||||
});
|
||||
}
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user