Skip to content

Commit

Permalink
fix ids
Browse files Browse the repository at this point in the history
  • Loading branch information
shivankacker committed Dec 3, 2024
1 parent 4b8c42e commit e749d9a
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions src/components/Patient/ManagePatients.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -992,12 +992,14 @@ export const PatientManager = () => {
/>

<div className="mt-4 gap-4 lg:gap-16 flex flex-col lg:flex-row lg:items-center">
<CountBlock
text={t("total_patients")}
count={data?.count || 0}
loading={isLoading}
icon="l-user-injured"
/>
<div id="total-patientcount">
<CountBlock
text={t("total_patients")}
count={data?.count || 0}
loading={isLoading}
icon="l-user-injured"
/>
</div>

<SearchByMultipleFields
id="patient-search"
Expand Down

0 comments on commit e749d9a

Please sign in to comment.