Skip to content

Commit df5bce2

Browse files
committed
fix: lint error
1 parent bd2c201 commit df5bce2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/stores/billing.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ export async function checkForProjectsLimit(org: Organization, orgProjectCount?:
325325
if (plan.$id !== BillingPlan.FREE) return;
326326
if (org.projects?.length > 0) return;
327327

328-
let projectCount = orgProjectCount;
328+
const projectCount = orgProjectCount;
329329
if (projectCount === undefined) return;
330330

331331
if (plan.projects > 0 && projectCount > plan.projects) {

0 commit comments

Comments
 (0)