Skip to content

Commit 64da2c8

Browse files
authored
fix(step-generation): fix substep whitescreen bug (#20026)
Ensure air gap aspirate and dispense in place commands in consolidate command creator include `{ isAirGap: true }` for proper omission in substep generation. Closes RQA-4791
1 parent c43c676 commit 64da2c8

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -721,6 +721,7 @@ export const consolidate: CommandCreator<ConsolidateArgs> = (
721721
correctionVolume: dispenseCorrectionVolumeForDispenseAirGap,
722722
}
723723
: {}),
724+
isAirGap: true,
724725
pushOut: 0,
725726
}),
726727
...delayAfterDispenseCommands,
@@ -934,6 +935,7 @@ export const consolidate: CommandCreator<ConsolidateArgs> = (
934935
flowRate: aspirateAirGapDispenseFlowRate,
935936
pushOut: 0,
936937
correctionVolume: dispenseCorrectionVolumeForAspirateAirGap,
938+
isAirGap: true,
937939
}),
938940
...delayAfterDispenseCommands,
939941
]

0 commit comments

Comments
 (0)