File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
app/src/organisms/ODD/QuickTransferFlow Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -100,7 +100,6 @@ export const SINGLE_CHANNEL_COMPATIBLE_LABWARE = [
100
100
'opentrons/thermoscientificnunc_96_wellplate_2000ul/1' ,
101
101
'opentrons/usascientific_12_reservoir_22ml/1' ,
102
102
'opentrons/usascientific_96_wellplate_2.4ml_deep/1' ,
103
- 'opentrons/evotips_opentrons_96_labware/1' ,
104
103
]
105
104
106
105
export const EIGHT_CHANNEL_COMPATIBLE_LABWARE = [
@@ -145,7 +144,6 @@ export const EIGHT_CHANNEL_COMPATIBLE_LABWARE = [
145
144
'opentrons/thermoscientificnunc_96_wellplate_2000ul/1' ,
146
145
'opentrons/usascientific_12_reservoir_22ml/1' ,
147
146
'opentrons/usascientific_96_wellplate_2.4ml_deep/1' ,
148
- 'opentrons/evotips_opentrons_96_labware/1' ,
149
147
]
150
148
151
149
export const NINETY_SIX_CHANNEL_COMPATIBLE_LABWARE = [
@@ -190,5 +188,4 @@ export const NINETY_SIX_CHANNEL_COMPATIBLE_LABWARE = [
190
188
'opentrons/thermoscientificnunc_96_wellplate_2000ul/1' ,
191
189
'opentrons/usascientific_12_reservoir_22ml/1' ,
192
190
'opentrons/usascientific_96_wellplate_2.4ml_deep/1' ,
193
- 'opentrons/evotips_opentrons_96_labware/1' ,
194
191
]
Original file line number Diff line number Diff line change 1
- import { getAllDefinitions } from '@opentrons/shared-data'
1
+ import {
2
+ getAllDefinitions ,
3
+ LABWAREV2_DO_NOT_LIST ,
4
+ } from '@opentrons/shared-data'
2
5
import {
3
6
SINGLE_CHANNEL_COMPATIBLE_LABWARE ,
4
7
EIGHT_CHANNEL_COMPATIBLE_LABWARE ,
5
8
NINETY_SIX_CHANNEL_COMPATIBLE_LABWARE ,
6
9
} from '../constants'
7
-
8
10
import type { LabwareDefinition2 } from '@opentrons/shared-data'
9
11
import type { LabwareFilter } from '/app/local-resources/labware'
10
12
11
13
export function getCompatibleLabwareByCategory (
12
14
pipetteChannels : 1 | 8 | 96 ,
13
15
category : LabwareFilter
14
16
) : LabwareDefinition2 [ ] | undefined {
15
- const allLabwareDefinitions = getAllDefinitions ( )
17
+ const allLabwareDefinitions = getAllDefinitions ( LABWAREV2_DO_NOT_LIST )
18
+ console . log ( allLabwareDefinitions )
16
19
let compatibleLabwareUris : string [ ] = SINGLE_CHANNEL_COMPATIBLE_LABWARE
17
20
if ( pipetteChannels === 8 ) {
18
21
compatibleLabwareUris = EIGHT_CHANNEL_COMPATIBLE_LABWARE
You can’t perform that action at this time.
0 commit comments