Skip to content

Commit cf940fe

Browse files
authored
fix(app): fix terminal banner render state (#17240)
Closes RQA-3840
1 parent 18690a6 commit cf940fe

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

app/src/organisms/Desktop/Devices/ProtocolRun/ProtocolRunHeader/RunHeaderBannerContainer/TerminalRunBannerContainer.tsx

+4-1
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,15 @@ export function useTerminalRunBannerContainer({
4040
const completedWithErrors =
4141
(commandErrorList != null && commandErrorList.length > 0) ||
4242
highestPriorityError != null
43+
// TODO(jh, 01-10-25): Adding /commandErrors to notifications accomplishes the below with reduced latency.
44+
const completedWithNoErrors =
45+
commandErrorList != null && commandErrorList.length === 0
4346

4447
const showSuccessBanner =
4548
runStatus === RUN_STATUS_SUCCEEDED &&
4649
isRunCurrent &&
4750
!isResetRunLoading &&
48-
!completedWithErrors
51+
completedWithNoErrors
4952

5053
// TODO(jh, 08-14-24): Ideally, the backend never returns the "user cancelled a run" error and
5154
// cancelledWithoutRecovery becomes unnecessary.

0 commit comments

Comments
 (0)