We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f51ada commit 2281d8dCopy full SHA for 2281d8d
step-generation/src/commandCreators/compound/replaceTip.ts
@@ -188,7 +188,8 @@ export const replaceTip: CommandCreator<ReplaceTipArgs> = (
188
: curryWithoutPython
189
const configureNozzleLayoutCommand: CurriedCommandCreator[] =
190
// only emit the command if previous nozzle state and tiprack state are different
191
- (channels === 96 || channels === 8) &&
+ // only check for the 96-channel since we do not support 8-channel partial tip yet
192
+ channels === 96 &&
193
args.nozzles != null &&
194
(args.nozzles !== stateNozzles || nextTiprack.tiprackId !== stateTiprack)
195
? [
0 commit comments