Skip to content

Commit

Permalink
fix(app): update move gantry text in change pipette flow
Browse files Browse the repository at this point in the history
closes RQA-1224
  • Loading branch information
shlokamin committed Oct 3, 2023
1 parent c23b603 commit ff2af32
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/organisms/ChangePipette/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ interface Props {

export function ChangePipette(props: Props): JSX.Element | null {
const { robotName, mount, closeModal } = props
const { t } = useTranslation('change_pipette')
const { t } = useTranslation(['change_pipette', 'shared'])
const history = useHistory()
const dispatch = useDispatch<Dispatch>()
const finalRequestId = React.useRef<string | null | undefined>(null)
Expand Down Expand Up @@ -184,7 +184,7 @@ export function ChangePipette(props: Props): JSX.Element | null {
marginTop={SPACING.spacing24}
marginBottom={SPACING.spacing8}
>
{t('moving_gantry')}
{t('shared:stand_back_robot_is_in_motion')}
</StyledText>
</InProgressModal>
)
Expand Down

0 comments on commit ff2af32

Please sign in to comment.