From 090cb63568d4983f5a4f5c9e93a3818dff2f4258 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marina=20L=C3=B3pez?= Date: Mon, 25 Aug 2025 11:07:19 +0200 Subject: [PATCH] :bug: Fix condition for members warning --- frontend/src/app/main/ui/dashboard/subscription.cljs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)))))