Show NWC manager in Wallet Connections modal

Co-authored-by: arena-agent <297053741+arena-agent@users.noreply.github.com>
This commit is contained in:
naturallaw777
2026-07-28 20:44:44 +00:00
co-authored by arena-agent
parent 1a6e456d06
commit a4f848fc6d
2 changed files with 24 additions and 7 deletions
@@ -63,6 +63,10 @@ async function apiFetch(path, options) {
} else if (body.detail && typeof body.detail.message === "string") {
detail = body.detail.message;
}
} else if (body && typeof body.message === "string") {
detail = body.message;
} else if (body && typeof body.error === "string") {
detail = body.error;
}
} catch (e) {}
throw new Error(detail);