From 9bcefd883643d2c0b4baf97bbb2b5f8fd6081cfc Mon Sep 17 00:00:00 2001 From: nicholas ma Date: Tue, 8 Oct 2024 13:21:18 -0700 Subject: [PATCH] fix: enabled auth popup on hardware wallets --- src/api/modules/sign/sign.background.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/modules/sign/sign.background.ts b/src/api/modules/sign/sign.background.ts index a52765c95..d1706233f 100644 --- a/src/api/modules/sign/sign.background.ts +++ b/src/api/modules/sign/sign.background.ts @@ -95,7 +95,7 @@ const background: ModuleFunction = async ( // check if there is an allowance limit, if there is we need to check allowance // if alwaysAsk is true, then we'll need to signAuth popup // if allowance is disabled, proceed with signing - if (alwaysAsk) { + if (alwaysAsk || activeWallet.type === "hardware") { // get address of keyfile const addr = activeWallet.type === "local"