mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-22 19:07:54 +01:00
fix: update users session warning in users table (#8794)
This commit is contained in:
parent
04a7b05ac3
commit
9d96052a3b
@ -8,7 +8,7 @@ type UserSessionsCellProps = {
|
||||
};
|
||||
|
||||
export const UserSessionsCell: FC<UserSessionsCellProps> = ({ count }) => {
|
||||
if (!count || count < 5) {
|
||||
if (!count || count < 4) {
|
||||
return null;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user