mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-02-01 23:35:10 -05:00
fix(ui): isLocal erroneously hardcoded
This commit is contained in:
@@ -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,
|
||||
});
|
||||
}
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user