Skip to content

Commit

Permalink
Fix type errors
Browse files Browse the repository at this point in the history
  • Loading branch information
ir4y committed Oct 5, 2023
1 parent a35c943 commit 85ffe35
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/containers/EncounterList/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ export function EncounterList() {
[Role.Practitioner]: (practitioner) => {
return { participant: practitioner.id };
},
[Role.Receptionist]: () => {
return {};
},
});

const { encounterDataListRD, handleTableChange, pagination } = useEncounterList(
Expand Down
3 changes: 3 additions & 0 deletions src/containers/PatientDetails/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@ export const PatientDetails = () => {
[Role.Patient]: () => {
return {};
},
[Role.Receptionist]: () => {
return {};
},
})}
/>
}
Expand Down

0 comments on commit 85ffe35

Please sign in to comment.