Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(protocol-designer, step-generation, shared-data): migrate to using pipette v2 schema #14713

Merged
merged 10 commits into from
Mar 26, 2024
4 changes: 2 additions & 2 deletions components/src/instrument/InstrumentDiagram.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ import singleFlexSrc from './single-channel-flex.png'
import eightChannelFlexSrc from './eight-channel-flex.png'
import ninetySixSrc from './ninety-six-channel-gen1.png'

import type { PipetteNameSpecs } from '@opentrons/shared-data'
import type { PipetteV2Specs } from '@opentrons/shared-data'
import type { Mount } from '../robot-types'
import type { StyleProps } from '..'

export interface InstrumentDiagramProps extends StyleProps {
mount: Mount
pipetteSpecs?: Pick<PipetteNameSpecs, 'displayCategory' | 'channels'> | null
pipetteSpecs?: Pick<PipetteV2Specs, 'displayCategory' | 'channels'> | null
className?: string
imageStyle?: FlattenSimpleInterpolation
}
Expand Down
Loading
Loading