Skip to content

Commit d75159f

Browse files
committed
Remove evotips from quick transfer
1 parent 2b2cc05 commit d75159f

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

app/src/organisms/ODD/QuickTransferFlow/constants.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,6 @@ export const SINGLE_CHANNEL_COMPATIBLE_LABWARE = [
100100
'opentrons/thermoscientificnunc_96_wellplate_2000ul/1',
101101
'opentrons/usascientific_12_reservoir_22ml/1',
102102
'opentrons/usascientific_96_wellplate_2.4ml_deep/1',
103-
'opentrons/evotips_opentrons_96_labware/1',
104103
]
105104

106105
export const EIGHT_CHANNEL_COMPATIBLE_LABWARE = [
@@ -145,7 +144,6 @@ export const EIGHT_CHANNEL_COMPATIBLE_LABWARE = [
145144
'opentrons/thermoscientificnunc_96_wellplate_2000ul/1',
146145
'opentrons/usascientific_12_reservoir_22ml/1',
147146
'opentrons/usascientific_96_wellplate_2.4ml_deep/1',
148-
'opentrons/evotips_opentrons_96_labware/1',
149147
]
150148

151149
export const NINETY_SIX_CHANNEL_COMPATIBLE_LABWARE = [
@@ -190,5 +188,4 @@ export const NINETY_SIX_CHANNEL_COMPATIBLE_LABWARE = [
190188
'opentrons/thermoscientificnunc_96_wellplate_2000ul/1',
191189
'opentrons/usascientific_12_reservoir_22ml/1',
192190
'opentrons/usascientific_96_wellplate_2.4ml_deep/1',
193-
'opentrons/evotips_opentrons_96_labware/1',
194191
]

app/src/organisms/ODD/QuickTransferFlow/utils/getCompatibleLabwareByCategory.ts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,21 @@
1-
import { getAllDefinitions } from '@opentrons/shared-data'
1+
import {
2+
getAllDefinitions,
3+
LABWAREV2_DO_NOT_LIST,
4+
} from '@opentrons/shared-data'
25
import {
36
SINGLE_CHANNEL_COMPATIBLE_LABWARE,
47
EIGHT_CHANNEL_COMPATIBLE_LABWARE,
58
NINETY_SIX_CHANNEL_COMPATIBLE_LABWARE,
69
} from '../constants'
7-
810
import type { LabwareDefinition2 } from '@opentrons/shared-data'
911
import type { LabwareFilter } from '/app/local-resources/labware'
1012

1113
export function getCompatibleLabwareByCategory(
1214
pipetteChannels: 1 | 8 | 96,
1315
category: LabwareFilter
1416
): LabwareDefinition2[] | undefined {
15-
const allLabwareDefinitions = getAllDefinitions()
17+
const allLabwareDefinitions = getAllDefinitions(LABWAREV2_DO_NOT_LIST)
18+
console.log(allLabwareDefinitions)
1619
let compatibleLabwareUris: string[] = SINGLE_CHANNEL_COMPATIBLE_LABWARE
1720
if (pipetteChannels === 8) {
1821
compatibleLabwareUris = EIGHT_CHANNEL_COMPATIBLE_LABWARE

0 commit comments

Comments
 (0)