This commit is contained in:
Owen
2025-10-27 10:05:31 -07:00
parent c04d9eda6b
commit 80f43a9774
10 changed files with 36 additions and 37 deletions

View File

@@ -1,8 +1,8 @@
export async function getOrgTierData(
orgId: string
): Promise<{ tier: string | null; active: boolean }> {
let tier = null;
let active = false;
const tier = null;
const active = false;
return { tier, active };
}