Skip to content

Commit

Permalink
fix: update users session warning in users table
Browse files Browse the repository at this point in the history
  • Loading branch information
Tymek committed Nov 19, 2024
1 parent cd0a65a commit 793c52a
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 793c52a

Please sign in to comment.