Skip to content

Commit

Permalink
fix(app): fix tip probe button in apiV1 protocols (#6318)
Browse files Browse the repository at this point in the history
  • Loading branch information
b-cooper authored Aug 10, 2020
1 parent f4fd460 commit 3b75f5d
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions app/src/pages/Calibrate/Pipettes.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,14 +61,15 @@ export function Pipettes(props: Props): React.Node {
/>
{robotName &&
!!currentPipette &&
!!tipRackDef &&
(ff.enableCalibrationOverhaul ? (
<CalibrateTipLengthControl
mount={currentPipette.mount}
robotName={robotName}
hasCalibrated={currentPipette.probed}
tipRackDefinition={tipRackDef}
/>
!!tipRackDef ? (
<CalibrateTipLengthControl
mount={currentPipette.mount}
robotName={robotName}
hasCalibrated={currentPipette.probed}
tipRackDefinition={tipRackDef}
/>
) : null
) : (
<TipProbe {...currentPipette} />
))}
Expand Down

0 comments on commit 3b75f5d

Please sign in to comment.