Skip to content

Commit 10e8a5e

Browse files
authored
fix(ai-client): filter EM pipette and 200ul 96 (#17798)
1 parent f239548 commit 10e8a5e

File tree

1 file changed

+7
-1
lines changed
  • opentrons-ai-client/src/organisms/InstrumentsSection

1 file changed

+7
-1
lines changed

opentrons-ai-client/src/organisms/InstrumentsSection/index.tsx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,13 @@ export function InstrumentsSection(): JSX.Element | null {
9292
value: name,
9393
name: getPipetteSpecsV2(name)?.displayName ?? '',
9494
}))
95-
.filter(o => o.value !== 'p1000_96')
95+
.filter(o => {
96+
return (
97+
o.value !== 'p1000_96' &&
98+
o.value !== 'p1000_multi_em_flex' &&
99+
o.value !== 'p200_96'
100+
)
101+
})
96102
return [{ name: t('none'), value: NO_PIPETTES }, ...allPipetteOptions]
97103
}, [robotType])
98104

0 commit comments

Comments
 (0)