Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
abhimanyurajeesh committed Dec 26, 2024
1 parent b9e746c commit f797a16
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/components/Users/UserListAndCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,6 @@ export const UserStatusIndicator = ({
cur_online ? "text-green-700" : "text-gray-500",
)}
>
//{cur_online ? t("online") : t("offline")}
{cur_online
? t("online")
: user.last_login
Expand Down Expand Up @@ -236,7 +235,7 @@ export const UserGrid = ({
}: {
users?: UserModel[] | UserAssignedModel[];
}) => (
<div className="grid grid-cols-1 gap-4 @xl:grid-cols-3 @4xl:grid-cols-4 @6xl:grid-cols-5 lg:grid-cols-2">
<div className="grid grid-cols-1 gap-4 @xl:grid-cols-3 @4xl:grid-cols-4 @6xl:grid-cols-5 lg:grid-cols-2">
{users?.map((user) => <UserCard key={user.id} user={user} />)}
</div>
);
Expand Down

0 comments on commit f797a16

Please sign in to comment.