1
0
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:
Tymoteusz Czech 2024-11-19 11:36:04 +01:00 committed by GitHub
parent 04a7b05ac3
commit 9d96052a3b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -8,7 +8,7 @@ type UserSessionsCellProps = {
};
export const UserSessionsCell: FC<UserSessionsCellProps> = ({ count }) => {
if (!count || count < 5) {
if (!count || count < 4) {
return null;
}