Skip to content

Commit 2281d8d

Browse files
authored
fix(step-generation): only emit configure_nozzle_layout for 96-channel (#18847)
closes RQA-4307
1 parent 0f51ada commit 2281d8d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,8 @@ export const replaceTip: CommandCreator<ReplaceTipArgs> = (
188188
: curryWithoutPython
189189
const configureNozzleLayoutCommand: CurriedCommandCreator[] =
190190
// only emit the command if previous nozzle state and tiprack state are different
191-
(channels === 96 || channels === 8) &&
191+
// only check for the 96-channel since we do not support 8-channel partial tip yet
192+
channels === 96 &&
192193
args.nozzles != null &&
193194
(args.nozzles !== stateNozzles || nextTiprack.tiprackId !== stateTiprack)
194195
? [

0 commit comments

Comments
 (0)