Skip to content

Commit

Permalink
list view updated
Browse files Browse the repository at this point in the history
  • Loading branch information
modamaan committed Feb 5, 2025
1 parent fdf44a4 commit f98fe23
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/components/Users/UserListAndCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -133,9 +133,7 @@ const UserListHeader = () => {
return (
<thead>
<tr className="bg-gray-50 text-sm font-medium text-gray-500">
<th className="sticky left-0 z-10 bg-gray-50 px-4 py-3 text-left">
{t("name")}
</th>
<th className=" bg-gray-50 px-4 py-3 text-left">{t("name")}</th>
<th className="w-32 px-10 py-3 text-left">{t("status")}</th>
<th className="px-10 py-3 text-left">{t("role")}</th>
<th className="px-4 py-3 text-left">{t("contact_number")}</th>
Expand All @@ -151,7 +149,7 @@ const UserListRow = ({ user }: { user: UserBase }) => {
id={`usr_${user.id}`}
className="hover:bg-gray-50"
>
<td className="sticky left-0 z-10 bg-white px-4 py-4 lg:pr-20">
<td className="px-4 py-4 lg:pr-20">
<div className="flex items-center gap-3">
<Avatar
// TO do: adjust for facility users
Expand Down

0 comments on commit f98fe23

Please sign in to comment.