Skip to content

Commit

Permalink
choose primary sensor for calibration flow
Browse files Browse the repository at this point in the history
  • Loading branch information
caila-marashaj committed Apr 23, 2024
1 parent 4f0ab2b commit e3f5cb4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class VerifyTipPresenceParams(PipetteIdMixin):
expectedState: TipPresenceStatus = Field(
..., description="The expected tip presence status on the pipette."
)
ht_follow_singular_sensor: Optional[InstrumentSensorId] = Field(
htFollowSingularSensor: Optional[InstrumentSensorId] = Field(
default=None, description="The sensor id to follow if the other can be ignored."
)

Expand Down
2 changes: 1 addition & 1 deletion app/src/organisms/PipetteWizardFlows/AttachProbe.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export const AttachProbe = (props: AttachProbeProps): JSX.Element | null => {
const verifyCommands: CreateCommand[] = [
{
commandType: 'verifyTipPresence',
params: { pipetteId: pipetteId, expectedState: 'present' },
params: { pipetteId: pipetteId, expectedState: 'present', htFollowSingularSensor: 'primary' },

Check failure on line 82 in app/src/organisms/PipetteWizardFlows/AttachProbe.tsx

View workflow job for this annotation

GitHub Actions / js checks

Type '{ commandType: "verifyTipPresence"; params: { pipetteId: string; expectedState: "present"; htFollowSingularSensor: string; }; }' is not assignable to type 'CreateCommand'.
},
]
const homeCommands: CreateCommand[] = [
Expand Down

0 comments on commit e3f5cb4

Please sign in to comment.