Skip to content

Commit

Permalink
Merge pull request #25 from algorandfoundation/chore/rekey-regression…
Browse files Browse the repository at this point in the history
…-fix

chore: rekey regression fix
  • Loading branch information
PhearZero authored Jun 10, 2024
2 parents 429c233 + 26d98e0 commit 2c68d47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sites/dapp-ui/src/pages/connected.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export function ConnectedPage() {
if (txn.txID() !== message.txId) throw new Error('Invalid txId');

const sig = fromBase64Url(message.sig);
const signedTxn = txn.attachSignature(wallet, sig);
const signedTxn = txn.attachSignature((!!accountInfo.data?.['auth-addr']) ? accountInfo.data?.['auth-addr'] : wallet, sig);

setIsWaitingForSignature(false);
setIsWaitingForConfirmation(true);
Expand Down

0 comments on commit 2c68d47

Please sign in to comment.