Remove redundant condition

This commit is contained in:
Jorge Manrubia
2025-12-15 11:15:30 +01:00
parent c8330a7be8
commit f4184e5a61
+1 -1
View File
@@ -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