Skip to content

Commit 0d1db4c

Browse files
authored
fix(app): fix tip drop location display in overview tab (#19157)
* fix(app): fix tip drop location display in overview tab
1 parent 7e45672 commit 0d1db4c

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
changeTip: ChangeTipOptions
3739
}
3840
deckConfig: DeckConfiguration
@@ -101,8 +103,8 @@ export function getInitialSummaryState(
101103
tipPositionAspirate: 1,
102104
preWetTip: false,
103105
tipPositionDispense: 1,
106+
dropTipLocation: state.dropTipLocation ?? trashConfigCutout,
104107
changeTip: state.changeTip,
105-
dropTipLocation: trashConfigCutout,
106108
liquidClassName: state.liquidClassName,
107109
liquidClassValuesInitialized: false,
108110
pushOutDispense: state.pushOutDispense,

0 commit comments

Comments
 (0)