diff --git a/frontend/src/app/main/ui/dashboard/subscription.cljs b/frontend/src/app/main/ui/dashboard/subscription.cljs index 5902128c85..68d2359cf9 100644 --- a/frontend/src/app/main/ui/dashboard/subscription.cljs +++ b/frontend/src/app/main/ui/dashboard/subscription.cljs @@ -215,6 +215,6 @@ (and is-owner (= subscription-type "unlimited") - ;; common: seats < 25 and diff >= 4 between editors/seats and there is underuse + ;; common: seats < 25 and diff >= 4 between editors/seats and there is overuse (and (< seats 25) - (>= (- seats editors) 4))))) + (>= (- editors seats) 4)))))