Skip to content

Commit b73463b

Browse files
authored
fix(step-generation): ensure nozzles are configured for 8-channel partial tip (#20254)
Fix the logical check for currying `configureNozzleLayout` in `replaceTip`, extending to 8-channel pipettes.
1 parent 6670cc0 commit b73463b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ export const replaceTip: CommandCreator<ReplaceTipArgs> = (
213213
const configureNozzleLayoutCommand: CurriedCommandCreator[] =
214214
// only emit the command if previous nozzle state and tiprack state are different
215215
// only check for the 96-channel since we do not support 8-channel partial tip yet
216-
channels === 96 &&
216+
channels !== 1 &&
217217
args.nozzles != null &&
218218
(args.nozzles !== stateNozzles || nextTiprack.tiprackId !== stateTiprack)
219219
? [

0 commit comments

Comments
 (0)