Skip to content

Commit

Permalink
filter out slot 12 in ot2 dropdown
Browse files Browse the repository at this point in the history
  • Loading branch information
jerader committed Dec 12, 2023
1 parent e07daca commit 6eaae5a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -224,8 +224,7 @@ export const getUnoccupiedLabwareLocationOptions: Selector<
const isTrashSlot =
robotType === FLEX_ROBOT_TYPE
? MOVABLE_TRASH_ADDRESSABLE_AREAS.includes(slotId)
: slotId === 'fixedTrash'

: slotId === 'fixedTrash' || slotId === '12'
return (
!slotIdsOccupiedByModules.includes(slotId) &&
!Object.values(labware)
Expand Down
1 change: 1 addition & 0 deletions shared-data/deck/types/schemaV4.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ export type OT2AddressableAreaName =
| '9'
| '10'
| '11'
| '12'
| 'fixedTrash'

export type AddressableAreaName =
Expand Down

0 comments on commit 6eaae5a

Please sign in to comment.