Skip to content

Commit 3d0503d

Browse files
authored
fix(app): copy error on OT2 pipette leveling flow (#20188)
# Overview Copy error on OT2 pipette leveling flow ## Test Plan and Hands on Testing ## Changelog - changed calibration block statement to accurately reflect orientation ## Risk assessment low Closes EXEC-1687
1 parent 8bc0095 commit 3d0503d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/src/organisms/Desktop/Devices/ChangePipette/LevelPipette.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ export function LevelPipette(props: LevelPipetteProps): JSX.Element {
7171
values={{
7272
slot: mount === 'left' ? '3' : '1',
7373
side: pipetteModelName === 'p20_mutli_gen2' ? 'short' : 'tall',
74-
direction: mount,
74+
direction: mount === 'left' ? 'right' : 'left',
7575
}}
7676
components={{
7777
strong: (

app/src/organisms/Desktop/Devices/ChangePipette/__tests__/LevelPipette.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ describe('LevelPipette', () => {
8080
)
8181
screen.getByText(
8282
nestedTextMatcher(
83-
'Place the calibration block in slot 3 with the tall surface on the left side.'
83+
'Place the calibration block in slot 3 with the tall surface on the right side.'
8484
)
8585
)
8686
screen.getByText(

0 commit comments

Comments
 (0)