Skip to content

Commit 93d7802

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 9f3fcfd commit 93d7802

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,
@@ -33,6 +34,7 @@ interface InitialSummaryStateProps {
3334
pushOutDispense?: {
3435
volume: number
3536
}
37+
dropTipLocation?: CutoutConfig
3638
}
3739
deckConfig: DeckConfiguration
3840
}
@@ -109,7 +111,7 @@ export function getInitialSummaryState(
109111
preWetTip: false,
110112
tipPositionDispense: 1,
111113
changeTip,
112-
dropTipLocation: trashConfigCutout,
114+
dropTipLocation: state.dropTipLocation ?? trashConfigCutout,
113115
liquidClassName: state.liquidClassName,
114116
liquidClassValuesInitialized: false,
115117
pushOutDispense: state.pushOutDispense,

0 commit comments

Comments
 (0)