We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a84f58a commit 76cbb52Copy full SHA for 76cbb52
app/src/pages/RunningProtocol/index.tsx
@@ -25,6 +25,7 @@ import {
25
RUN_STATUS_STOP_REQUESTED,
26
RUN_STATUS_BLOCKED_BY_OPEN_DOOR,
27
RUN_STATUS_AWAITING_RECOVERY,
28
+ RUN_STATUS_FINISHING,
29
} from '@opentrons/api-client'
30
31
import { useFeatureFlag } from '../../redux/config'
@@ -203,7 +204,8 @@ export function RunningProtocol(): JSX.Element {
203
204
{interventionModalCommandKey != null &&
205
runRecord?.data != null &&
206
lastRunCommand != null &&
- isInterventionCommand(lastRunCommand) ? (
207
+ isInterventionCommand(lastRunCommand) &&
208
+ runStatus !== RUN_STATUS_FINISHING ? (
209
<InterventionModal
210
robotName={robotName}
211
command={lastRunCommand}
0 commit comments