chat-ui / src /lib /stores /isPro.ts
victor's picture
victor HF Staff
feat: add PRO badge and credits modal for HuggingChat (#2048)
b9a2152 unverified
import { writable } from "svelte/store";
// null = unknown/loading, true = PRO, false = not PRO
export const isPro = writable<boolean | null>(null);