Skip to content

Commit

Permalink
fix(console): app downgrade features (#2780)
Browse files Browse the repository at this point in the history
  • Loading branch information
Cosmin-Parvulescu authored Dec 1, 2023
1 parent c143466 commit 032b222
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/console/app/routes/apps/$clientId/billing.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,7 @@ const DowngradeConfirmationModal = ({
<ul className="list-disc">
{plans[currentPlan].features
.filter(
(f) => f.type === 'current' || !Boolean(f.aggregateFeatures)
(f) => f.type === 'current' && !Boolean(f.aggregateFeatures)
)
.map((f) => (
<li>{f.title}</li>
Expand Down

0 comments on commit 032b222

Please sign in to comment.