From 8fe1d2d3c2acc7f01d7a749569db9bcaaf3d8836 Mon Sep 17 00:00:00 2001 From: Jethary Date: Wed, 13 Dec 2023 08:22:28 -0500 Subject: [PATCH] address comments --- protocol-designer/src/top-selectors/labware-locations/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocol-designer/src/top-selectors/labware-locations/index.ts b/protocol-designer/src/top-selectors/labware-locations/index.ts index afa7f288ab6..9396bd121b8 100644 --- a/protocol-designer/src/top-selectors/labware-locations/index.ts +++ b/protocol-designer/src/top-selectors/labware-locations/index.ts @@ -224,7 +224,7 @@ export const getUnoccupiedLabwareLocationOptions: Selector< const isTrashSlot = robotType === FLEX_ROBOT_TYPE ? MOVABLE_TRASH_ADDRESSABLE_AREAS.includes(slotId) - : slotId === 'fixedTrash' || slotId === '12' + : ['fixedTrash', '12'].includes(slotId) return ( !slotIdsOccupiedByModules.includes(slotId) && !Object.values(labware)