Fix nip98
Docker / build-and-push-image (backend, backend, coracle/caravel-backend) (push) Failing after 0s
Docker / build-and-push-image (frontend, frontend, coracle/caravel-frontend) (push) Failing after 0s

This commit is contained in:
Jon Staab
2026-06-01 13:31:00 -07:00
parent e4e0172972
commit 9171824ee5
6 changed files with 11 additions and 14 deletions
+1 -1
View File
@@ -116,7 +116,7 @@ export const createRelayForActiveTenant = (input: CreateRelayInput) => {
}
const overrides = {
tenant: account()!.pubkey,
tenant_pubkey: account()!.pubkey,
blossom_enabled: input.plan_id === "free" ? 0 : 1,
livekit_enabled: input.plan_id === "free" ? 0 : 1,
}
+1 -1
View File
@@ -16,7 +16,7 @@ export default function AdminRelayList() {
const list = relays() ?? []
const q = query().trim()
if (!q) return list
return new Fuse(list, { keys: ["info_name", "subdomain", "tenant"], threshold: 0.35, ignoreLocation: true }).search(q).map(r => r.item)
return new Fuse(list, { keys: ["info_name", "subdomain", "tenant_pubkey"], threshold: 0.35, ignoreLocation: true }).search(q).map(r => r.item)
})
return (