Skip to content

Commit

Permalink
fix: update users session warning in users table (#8794)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tymek authored Nov 19, 2024
1 parent 04a7b05 commit 9d96052
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ type UserSessionsCellProps = {
};

export const UserSessionsCell: FC<UserSessionsCellProps> = ({ count }) => {
if (!count || count < 5) {
if (!count || count < 4) {
return null;
}

Expand Down

0 comments on commit 9d96052

Please sign in to comment.