Skip to content

Commit 184b803

Browse files
committed
fix(app): fix tip drop location display in overview tab
fix tip drop location display in overview tab clse RQA-4504
1 parent 8ad8229 commit 184b803

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

app/src/organisms/ODD/QuickTransferFlow/utils/getInitialSummaryState.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import {
66

77
import type { Mount } from '@opentrons/api-client'
88
import type {
9+
CutoutConfig,
910
DeckConfiguration,
1011
LabwareDefinition2,
1112
PipetteV2Specs,
@@ -34,6 +35,7 @@ interface InitialSummaryStateProps {
3435
volume: number
3536
}
3637
changeTip: ChangeTipOptions
38+
dropTipLocation?: CutoutConfig
3739
}
3840
deckConfig: DeckConfiguration
3941
}
@@ -102,7 +104,7 @@ export function getInitialSummaryState(
102104
preWetTip: false,
103105
tipPositionDispense: 1,
104106
changeTip: state.changeTip,
105-
dropTipLocation: trashConfigCutout,
107+
dropTipLocation: state.dropTipLocation ?? trashConfigCutout,
106108
liquidClassName: state.liquidClassName,
107109
liquidClassValuesInitialized: false,
108110
pushOutDispense: state.pushOutDispense,

0 commit comments

Comments
 (0)