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

Commit

Permalink
feat(edit appointment): fix lint errors and typo
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthewDorner committed Feb 21, 2020
1 parent d639700 commit c22d02b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/HospitalRun.tsx
Expand Up @@ -84,7 +84,7 @@ const HospitalRun = () => {
exact
path="/appointments/edit/:id"
component={EditAppointment}
/>
/>
<PrivateRoute
isAuthenticated={permissions.includes(Permissions.ReadAppointments)}
exact
Expand Down
Expand Up @@ -73,7 +73,7 @@ describe('appointments slice', () => {
expect(dispatch).toHaveBeenCalledWith({ type: fetchAppointmentsStart.type })
})

it('should call the AppointmentsRepository findAll() function', async () => {
it('should call the AppointmentRepository findAll() function', async () => {
const dispatch = jest.fn()
const getState = jest.fn()
await fetchAppointments()(dispatch, getState, null)
Expand Down

0 comments on commit c22d02b

Please sign in to comment.