From 93b85ccc338e97f14300ada24bd396fe1bad6e4d Mon Sep 17 00:00:00 2001 From: Jethary Rader <66035149+jerader@users.noreply.github.com> Date: Tue, 18 Jun 2024 11:30:48 -0400 Subject: [PATCH] fix(step-generation): add nozzle props to consolidate and distribute (#15452) closes RESC-283 --- step-generation/src/commandCreators/compound/consolidate.ts | 1 + step-generation/src/commandCreators/compound/distribute.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/step-generation/src/commandCreators/compound/consolidate.ts b/step-generation/src/commandCreators/compound/consolidate.ts index abe2392c7c1..c01fc85800b 100644 --- a/step-generation/src/commandCreators/compound/consolidate.ts +++ b/step-generation/src/commandCreators/compound/consolidate.ts @@ -292,6 +292,7 @@ export const consolidate: CommandCreator = ( pipette: args.pipette, dropTipLocation, tipRack: args.tipRack, + nozzles: args.nozzles ?? undefined, }), ] } diff --git a/step-generation/src/commandCreators/compound/distribute.ts b/step-generation/src/commandCreators/compound/distribute.ts index 853b43a768f..b3c31d78ead 100644 --- a/step-generation/src/commandCreators/compound/distribute.ts +++ b/step-generation/src/commandCreators/compound/distribute.ts @@ -308,6 +308,7 @@ export const distribute: CommandCreator = ( pipette: args.pipette, dropTipLocation: args.dropTipLocation, tipRack: args.tipRack, + nozzles: args.nozzles ?? undefined, }), ] }