Skip to content

Commit

Permalink
fix(app): only show leveling screen for gen2 multi-channel pipettes (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
smb2268 authored Oct 6, 2023
1 parent 1adcabd commit 410a5fd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/src/organisms/ChangePipette/ConfirmPipette.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,8 @@ export function ConfirmPipette(props: ConfirmPipetteProps): JSX.Element {
return !confirmPipetteLevel &&
(wrongWantedPipette != null || (props.wantedPipette != null && success)) &&
actualPipette != null &&
actualPipette.channels === 8 ? (
actualPipette.channels === 8 &&
actualPipette.displayCategory === 'GEN2' ? (
<LevelPipette
mount={mount}
pipetteModelName={actualPipette.name}
Expand Down

0 comments on commit 410a5fd

Please sign in to comment.