We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6180ffa commit 27e4459Copy full SHA for 27e4459
packages/mcp-server-supabase/src/pricing.ts
@@ -54,9 +54,7 @@ export async function getNextProjectCost(
54
55
if (org.plan !== 'free') {
56
// If the organization is on a paid plan, the first project is included
57
- if (activeProjects.length === 0) {
58
- amount = 0;
59
- } else {
+ if (activeProjects.length > 0) {
60
amount = PROJECT_COST_MONTHLY;
61
}
62
0 commit comments