refactor(nip46): remove redundant signer URL state

This commit is contained in:
2026-04-10 19:10:05 +05:30
committed by hodlbod
parent 13e1ca46fc
commit 6f953ddbc7
-5
View File
@@ -31,7 +31,6 @@ const makeSignerLaunchUrl = (nostrconnectUrl: string) => {
export class Nip46Controller {
url = writable("")
signerUrls = writable<{aegis: string; nostrsigner: string} | undefined>(undefined)
bunker = writable("")
loading = writable(false)
clientSecret = makeSecret()
@@ -52,10 +51,6 @@ export class Nip46Controller {
})
this.url.set(url)
this.signerUrls.set({
aegis: makeSignerLaunchUrl(url),
nostrsigner: makeSignerLaunchUrl(url),
})
let response
try {