mirror of
https://github.com/Unleash/unleash.git
synced 2025-09-24 17:51:14 +02: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 }) => {
|
export const UserSessionsCell: FC<UserSessionsCellProps> = ({ count }) => {
|
||||||
if (!count || count < 5) {
|
if (!count || count < 4) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user