From f4184e5a612ba97d343b7fbe7700abb57161e7df Mon Sep 17 00:00:00 2001 From: Jorge Manrubia Date: Mon, 15 Dec 2025 11:15:30 +0100 Subject: [PATCH] Remove redundant condition --- saas/app/models/account/billing.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/saas/app/models/account/billing.rb b/saas/app/models/account/billing.rb index be938701d..69c033817 100644 --- a/saas/app/models/account/billing.rb +++ b/saas/app/models/account/billing.rb @@ -24,6 +24,6 @@ module Account::Billing end def exceeding_card_limit? - plan.limit_cards? && cards_count > plan.card_limit + cards_count > plan.card_limit end end