Skip to content
This repository has been archived by the owner on Jan 9, 2023. It is now read-only.

Commit

Permalink
feat(i18n): add more missing translations
Browse files Browse the repository at this point in the history
  • Loading branch information
jackcmeyer committed Mar 10, 2020
1 parent 0f0a7c3 commit 697552d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/__tests__/components/Navbar.test.tsx
Expand Up @@ -75,7 +75,7 @@ describe('Navbar', () => {
'scheduling.appointments.label',
)
expect(scheduleLinkList.first().props().children[1].props.children).toEqual(
'scheduling.appointments.newAppointment',
'scheduling.appointments.new',
)
})

Expand Down
2 changes: 1 addition & 1 deletion src/components/Navbar.tsx
Expand Up @@ -63,7 +63,7 @@ const Navbar = () => {
},
{
type: 'link',
label: t('scheduling.appointments.newAppointment'),
label: t('scheduling.appointments.new'),
onClick: () => {
history.push('/appointments/new')
},
Expand Down

0 comments on commit 697552d

Please sign in to comment.