From 3626368e95b228f30dc6855f10d190f92d833aa3 Mon Sep 17 00:00:00 2001 From: Sabir Hassan Date: Tue, 19 Mar 2024 10:51:20 +0500 Subject: [PATCH] fix: no need to listen for authUrl in createNsecBunkerSigner method of NostrController --- src/controllers/NostrController.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/controllers/NostrController.ts b/src/controllers/NostrController.ts index 2ddd424..5b3945b 100644 --- a/src/controllers/NostrController.ts +++ b/src/controllers/NostrController.ts @@ -127,10 +127,6 @@ export class NostrController { ) } - this.remoteSigner.on('authUrl', (url: string) => { - window.open(url, '_blank') - }) - resolve(this.remoteSigner) }) }