Skip to content

Commit

Permalink
resolved deployment issue
Browse files Browse the repository at this point in the history
  • Loading branch information
nithish1018 committed Oct 21, 2024
1 parent 5007bce commit 7acf200
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/Components/Shifting/ListView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@ export default function ListView() {
);
}


return (
<div className="mb-5 grid gap-x-6 md:grid-cols-2">
{data.map((shift: IShift) => (
Expand All @@ -88,8 +87,7 @@ export default function ListView() {
<div>
<div className="flex justify-between">
<div className="mb-2 text-xl font-bold capitalize">
{shift.patient_object.name} -{" "}
{formatPatientAge(shift.patient_object, true)}
{shift.patient_object.name} - {shift.patient_object.age}
</div>
<div>
{shift.emergency && (
Expand Down

0 comments on commit 7acf200

Please sign in to comment.