🐛 Fix condition for members warning

This commit is contained in:
Marina López 2025-08-25 11:07:19 +02:00
parent f223831766
commit 090cb63568

View File

@ -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)))))