diff --git a/opentrons-ai-client/src/organisms/InstrumentsSection/index.tsx b/opentrons-ai-client/src/organisms/InstrumentsSection/index.tsx index 6f815b45a5d..2986654df24 100644 --- a/opentrons-ai-client/src/organisms/InstrumentsSection/index.tsx +++ b/opentrons-ai-client/src/organisms/InstrumentsSection/index.tsx @@ -84,6 +84,10 @@ export function InstrumentsSection(): JSX.Element | null { name ) ) + .filter(name => { + const specs = getPipetteSpecsV2(name) + return !specs?.displayName?.includes('GEN1') + }) .map(name => ({ value: name, name: getPipetteSpecsV2(name)?.displayName ?? '',