fix build

This commit is contained in:
KM Koushik
2025-10-25 05:43:00 +11:00
parent 1c9056ba75
commit 8e569f886e
+1 -1
View File
@@ -12,7 +12,7 @@ function isLimitExceeded(current: number, limit: number): boolean {
return current >= limit;
}
function getActivePlan(team: { plan: string; isActive: boolean }): Plan {
function getActivePlan(team: { plan: Plan; isActive: boolean }): Plan {
return team.isActive ? team.plan : "FREE";
}