Skip to content

Commit 770e82c

Browse files
authored
fix(step-generation): set air gap dispense pushOut to 0 (#18810)
Ensure `pushOut` param for air gap `dispenseInPlace` commands is explicitly 0.
1 parent 9c3a33a commit 770e82c

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

step-generation/src/commandCreators/compound/distribute.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -789,6 +789,7 @@ export const distribute: CommandCreator<DistributeArgs> = (
789789
volume: conditioningVolume,
790790
flowRate: dispenseFlowRateUlSec,
791791
correctionVolume: dispenseCorrectionVolumeForConditioningVolume,
792+
pushOut: 0,
792793
}),
793794
...delayAfterDispenseCommands,
794795
]

step-generation/src/commandCreators/compound/transfer.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -620,6 +620,7 @@ export const transfer: CommandCreator<TransferArgs> = (
620620
correctionVolume: dispenseCorrectionVolumeForDispenseAirGap,
621621
}
622622
: {}),
623+
pushOut: 0,
623624
}),
624625
...delayAfterDispenseCommands,
625626
]

step-generation/src/fixtures/commandFixtures.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -330,6 +330,7 @@ export const aspirateHelperLiquidClass = (submergeParams: {
330330
pipetteId,
331331
volume: dispenseAirGap,
332332
flowRate: dispenseFlowRate,
333+
pushOut: 0,
333334
},
334335
meta: AIR_GAP_META,
335336
},

0 commit comments

Comments
 (0)