Sync frontend and backend

This commit is contained in:
Jon Staab
2026-05-22 11:03:55 -07:00
parent b4af2f3866
commit 384ddbd439
7 changed files with 16 additions and 16 deletions
+1 -1
View File
@@ -135,7 +135,7 @@ export const reactivateRelayById = (id: string) => reactivateRelay(id)
export async function tenantNeedsPaymentSetup(): Promise<boolean> {
const tenant = await getTenant(account()!.pubkey)
return !tenant.nwc_url && !tenant.stripe_subscription_id
return !tenant.nwc_is_set && !tenant.stripe_subscription_id
}
export async function getLatestOpenInvoice(): Promise<Invoice | null> {