use pricing matrix in existing usePaidStatus funcitons

This commit is contained in:
miloschwartz
2026-02-09 18:17:18 -08:00
committed by Owen
parent df1bf09163
commit 5ca598139e
12 changed files with 33 additions and 17 deletions

View File

@@ -1,6 +1,8 @@
import { Tier } from "@server/types/Tiers";
export async function isSubscribed(
orgId: string,
tiers: string[]
tiers: Tier[]
): Promise<boolean> {
return false;
}