Skip to content

Commit

Permalink
fix: enabled auth popup on hardware wallets
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholaswma committed Oct 8, 2024
1 parent 6c48d06 commit 9bcefd8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/modules/sign/sign.background.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ const background: ModuleFunction<BackgroundResult> = 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"
Expand Down

0 comments on commit 9bcefd8

Please sign in to comment.