Skip to content

Commit

Permalink
address a comment
Browse files Browse the repository at this point in the history
  • Loading branch information
koji committed Nov 17, 2023
1 parent df434dd commit f15311b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion components/src/hardware-sim/DeckConfigurator/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import {
STAGING_AREA_RIGHT_SLOT_FIXTURE,
TRASH_BIN_ADAPTER_FIXTURE,
WASTE_CHUTE_FIXTURES,
WASTE_CHUTE_ONLY_FIXTURES,
WASTE_CHUTE_STAGING_AREA_FIXTURES,
} from '@opentrons/shared-data'

Expand Down Expand Up @@ -65,7 +66,9 @@ export function DeckConfigurator(props: DeckConfiguratorProps): JSX.Element {
)
const wasteChuteFixtures = configurableDeckConfig.filter(
({ cutoutFixtureId }) =>
cutoutFixtureId != null && WASTE_CHUTE_FIXTURES.includes(cutoutFixtureId)
cutoutFixtureId != null &&
(WASTE_CHUTE_FIXTURES.includes(cutoutFixtureId) ||
WASTE_CHUTE_ONLY_FIXTURES.includes(cutoutFixtureId))
)
const wasteChuteStagingAreaFixtures = configurableDeckConfig.filter(
({ cutoutFixtureId }) =>
Expand Down

0 comments on commit f15311b

Please sign in to comment.