Skip to content

Commit

Permalink
fix(protocol-designer): moving labware into waste chute step summary … (
Browse files Browse the repository at this point in the history
#17194)

…copy fix

closes RQA-3769
  • Loading branch information
jerader authored Jan 7, 2025
1 parent e1f65a2 commit ea7d64b
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@ import {
StyledText,
Tag,
} from '@opentrons/components'
import { getModuleDisplayName } from '@opentrons/shared-data'
import {
WASTE_CHUTE_CUTOUT,
getModuleDisplayName,
} from '@opentrons/shared-data'
import {
getAdditionalEquipmentEntities,
getLabwareEntities,
Expand Down Expand Up @@ -285,6 +288,8 @@ export function StepSummary(props: StepSummaryProps): JSX.Element | null {
newLocationName = labwareNicknamesById[newLocation]
} else if (newLocation === 'offDeck') {
newLocationName = t('off_deck')
} else if (newLocation === WASTE_CHUTE_CUTOUT) {
newLocationName = t('shared:wasteChute')
}
stepSummaryContent = (
<StyledTrans
Expand Down

0 comments on commit ea7d64b

Please sign in to comment.