Skip to content

Commit

Permalink
Made changes PatientHome.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
Sulochan-khadka authored Apr 21, 2024
1 parent abc79b2 commit 045fceb
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions src/Components/Patient/PatientHome.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1400,7 +1400,11 @@ export const PatientHome = (props: any) => {
<CircularProgress />
</PaginatedList.WhenLoading>
<PaginatedList.WhenEmpty className="py-2">
<p>No consultation History</p>
<div className="h-full space-y-2 rounded-lg bg-white p-7 shadow">
<div className="flex w-full items-center justify-center text-xl font-bold text-gray-500">
No Consultation History Available
</div>
</div>
</PaginatedList.WhenEmpty>
<PaginatedList.Items<ConsultationModel>>
{(item) => (
Expand Down Expand Up @@ -1436,7 +1440,11 @@ export const PatientHome = (props: any) => {
<CircularProgress />
</PaginatedList.WhenLoading>
<PaginatedList.WhenEmpty className="py-2">
<p>No Sample Test History</p>
<div className="h-full space-y-2 rounded-lg bg-white p-7 shadow">
<div className="flex w-full items-center justify-center text-xl font-bold text-gray-500">
No Sample Test History Available
</div>
</div>
</PaginatedList.WhenEmpty>
<PaginatedList.Items<SampleTestModel>>
{(item) => (
Expand Down

0 comments on commit 045fceb

Please sign in to comment.