We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f239548 commit 10e8a5eCopy full SHA for 10e8a5e
opentrons-ai-client/src/organisms/InstrumentsSection/index.tsx
@@ -92,7 +92,13 @@ export function InstrumentsSection(): JSX.Element | null {
92
value: name,
93
name: getPipetteSpecsV2(name)?.displayName ?? '',
94
}))
95
- .filter(o => o.value !== 'p1000_96')
+ .filter(o => {
96
+ return (
97
+ o.value !== 'p1000_96' &&
98
+ o.value !== 'p1000_multi_em_flex' &&
99
+ o.value !== 'p200_96'
100
+ )
101
+ })
102
return [{ name: t('none'), value: NO_PIPETTES }, ...allPipetteOptions]
103
}, [robotType])
104
0 commit comments