Skip to content

Commit

Permalink
update generateCompatibleLabwareForPipette to omit lids
Browse files Browse the repository at this point in the history
  • Loading branch information
shiyaochen authored and shiyaochen committed Oct 22, 2024
1 parent 4d1b541 commit ea1c73b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion app/src/organisms/ODD/QuickTransferFlow/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@ export const SINGLE_CHANNEL_COMPATIBLE_LABWARE = [
'opentrons/opentrons_flex_96_tiprack_1000ul/1',
'opentrons/opentrons_flex_96_tiprack_200ul/1',
'opentrons/opentrons_flex_96_tiprack_50ul/1',
'opentrons/opentrons_tough_pcr_auto_sealing_lid/1',
'opentrons/opentrons_universal_flat_adapter_corning_384_wellplate_112ul_flat/1',
'opentrons/thermoscientificnunc_96_wellplate_1300ul/1',
'opentrons/thermoscientificnunc_96_wellplate_2000ul/1',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ export function generateCompatibleLabwareForPipette(
(acc, definition) => {
if (
definition.allowedRoles != null &&
definition.allowedRoles.includes('adapter')
(definition.allowedRoles.includes('adapter') ||
definition.allowedRoles.includes('lid'))
) {
return acc
} else if (pipetteSpecs.channels === 1) {
Expand Down

0 comments on commit ea1c73b

Please sign in to comment.