Skip to content

Commit

Permalink
fix(step-generation): configureForVolume volume correctly set to am… (#…
Browse files Browse the repository at this point in the history
…17189)

…ount

closes RESC-366

Previously, the configure for volume volume was set to the transfer's total volume and not the chunk's volume. But this pr changed it so the volume was set to the chunk number! This pr fixes it so the volume is set to the actual volume
  • Loading branch information
jerader authored Jan 6, 2025
1 parent 20e1dd3 commit 7fa1309
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3624,7 +3624,7 @@
"key": "dd1b37d6-eb8c-4616-bc8a-e1f17556234a",
"params": {
"pipetteId": "21087f15-4c03-4587-8a2b-1ba0b5a501a0",
"volume": 1
"volume": 10
}
},
{
Expand Down
2 changes: 1 addition & 1 deletion step-generation/src/commandCreators/compound/transfer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ export const transfer: CommandCreator<TransferArgs> = (
? [
curryCommandCreator(configureForVolume, {
pipetteId: args.pipette,
volume: chunksPerSubTransfer,
volume: subTransferVol,
}),
]
: []
Expand Down

0 comments on commit 7fa1309

Please sign in to comment.