Skip to content

Commit

Permalink
fix(app): Fix "carraige" typo to "carriage" (#16582)
Browse files Browse the repository at this point in the history
  • Loading branch information
SyntaxColoring authored Oct 23, 2024
1 parent 5965706 commit 1d7b1f7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/src/assets/localization/en/pipette_wizard_flows.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"install_probe": "Take the calibration probe from its storage location. Ensure its collar is unlocked. Push the pipette ejector up and press the probe firmly onto the <bold>{{location}}</bold> pipette nozzle. Twist the collar to lock the probe. Test that the probe is secure by gently pulling it back and forth.",
"loose_detach": "Loosen screws and detach ",
"move_gantry_to_front": "Move gantry to front",
"must_detach_mounting_plate": "You must detach the mounting plate and reattach the z-axis carraige before using other pipettes. We do not recommend exiting this process before completion.",
"must_detach_mounting_plate": "You must detach the mounting plate and reattach the z-axis carriage before using other pipettes. We do not recommend exiting this process before completion.",
"name_and_volume_detected": "{{name}} Pipette Detected",
"next": "next",
"ninety_six_channel": "{{ninetySix}} pipette",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ describe('UnskippableModal', () => {
render(props)
screen.getByText('This is a critical step that should not be skipped')
screen.getByText(
'You must detach the mounting plate and reattach the z-axis carraige before using other pipettes. We do not recommend exiting this process before completion.'
'You must detach the mounting plate and reattach the z-axis carriage before using other pipettes. We do not recommend exiting this process before completion.'
)
fireEvent.click(screen.getByRole('button', { name: 'Go back' }))
expect(props.goBack).toHaveBeenCalled()
Expand All @@ -39,7 +39,7 @@ describe('UnskippableModal', () => {
render(props)
screen.getByText('This is a critical step that should not be skipped')
screen.getByText(
'You must detach the mounting plate and reattach the z-axis carraige before using other pipettes. We do not recommend exiting this process before completion.'
'You must detach the mounting plate and reattach the z-axis carriage before using other pipettes. We do not recommend exiting this process before completion.'
)
screen.getByText('Exit')
screen.getByText('Go back')
Expand Down

0 comments on commit 1d7b1f7

Please sign in to comment.