Skip to content

Commit

Permalink
fix timeline toolbox title copy
Browse files Browse the repository at this point in the history
  • Loading branch information
ncdiehl11 committed Nov 18, 2024
1 parent ed5a290 commit a3ec8f6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@
}
},
"time": "Time",
"timeline": "Timeline",
"tiprack": "Tiprack",
"tip_handling": "Tip handling",
"tip_position": "{{prefix}} tip position",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export const TimelineToolbox = (): JSX.Element => {
width="19.5rem"
title={
<StyledText desktopStyle="bodyLargeSemiBold">
{t('protocol_timeline')}
{t('timeline')}
</StyledText>
}
titlePadding={SPACING.spacing12}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ describe('TimelineToolbox', () => {
})
it('renders 2 terminal item steps, a draggable step and presaved step with toolbox title', () => {
render()
screen.getByText('Protocol timeline')
screen.getByText('Timeline')
screen.getByText('mock AddStepButton')
screen.getByText('mock PresavedStep')
screen.getByText('mock DraggableSteps')
Expand Down

0 comments on commit a3ec8f6

Please sign in to comment.