Skip to content

Commit

Permalink
fix(app): Fix "calibration needed" for trash bin (#16005)
Browse files Browse the repository at this point in the history
Closes RQA-2954
  • Loading branch information
mjhuff authored Aug 14, 2024
1 parent 225251b commit b77d61c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/src/organisms/Devices/ProtocolRun/ProtocolRunSetup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,8 @@ export function ProtocolRunSetup({
isFlex && hasModules
? t('calibration_ready')
: t('deck_hardware_ready'),
incompleteText: isFlex ? t('calibration_needed') : t('action_needed'),
incompleteText:
isFlex && hasModules ? t('calibration_needed') : t('action_needed'),
missingHardware: isMissingModule || isFixtureMismatch,
missingHardwareText: t('action_needed'),
incompleteElement: null,
Expand Down

0 comments on commit b77d61c

Please sign in to comment.