Skip to content

Commit

Permalink
Merge pull request #486 from arconnectio/fix/sign-keystone
Browse files Browse the repository at this point in the history
fix: enabled auth popup on hardware wallets
  • Loading branch information
nicholaswma authored Oct 8, 2024
2 parents 6c48d06 + 9bcefd8 commit 7a48aa0
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 7a48aa0

Please sign in to comment.