1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00

feat: change max session count warning to 4 devices (#8792)

This commit is contained in:
Tymoteusz Czech 2024-11-19 10:26:52 +01:00 committed by GitHub
parent ec19ab03c1
commit cd0a65a279
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -14,7 +14,7 @@ export const SecurityBanner = () => {
!isAdmin ||
!showUserDeviceCount ||
!uiConfig.maxSessionsCount ||
uiConfig.maxSessionsCount < 5
uiConfig.maxSessionsCount < 4
) {
return null;
}