add subscription violation banner

This commit is contained in:
miloschwartz
2026-02-10 21:19:14 -08:00
committed by Owen
parent 7b01f1bef6
commit b75600b9ea
7 changed files with 75 additions and 2 deletions

View File

@@ -8,6 +8,8 @@ type SubscriptionStatusContextType = {
getTier: () => { tier: Tier | null; active: boolean };
isSubscribed: () => boolean;
subscribed: boolean;
/** True when org has exceeded plan limits (sites, users, etc.). Only set when build === saas. */
limitsExceeded: boolean;
};
const SubscriptionStatusContext = createContext<