Update max buckets to be greater than the number
parent
afd4c6b902
commit
c44d8a6173
|
@ -204,7 +204,7 @@ export const checkBucketLimits = () => async (
|
|||
const bucketsMax = extractBucketMax(limits)
|
||||
const bucketsCount = list.length
|
||||
|
||||
if (bucketsCount >= bucketsMax) {
|
||||
if (bucketsCount > bucketsMax) {
|
||||
dispatch(setBucketLimitStatus(LimitStatus.EXCEEDED))
|
||||
dispatch(notify(resourceLimitReached('buckets')))
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue