Skip to content

Commit

Permalink
Merge pull request #52 from nabla-studio/DavideSegullo/fix-deeplink
Browse files Browse the repository at this point in the history
fix: mobile deeplink
  • Loading branch information
DavideSegullo authored Jan 19, 2024
2 parents b77348d + 3e27de8 commit c9e3ffd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/store/src/cosmjs/sign.ts
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ export const sign = async (
fee = await estimateFee(client, sender, messages, gasPrice, memo);
}

openWCDeeplink(state.wallet);
openWCDeeplink(state.wallet, state.openDeeplink);

return client.sign(sender, messages, fee, memo ?? '');
};
Expand Down Expand Up @@ -281,7 +281,7 @@ export const signCW = async (
fee = await estimateFee(client, sender, messages, gasPrice, memo);
}

openWCDeeplink(state.wallet);
openWCDeeplink(state.wallet, state.openDeeplink);

return client.sign(sender, messages, fee, memo ?? '');
};
Expand All @@ -295,7 +295,7 @@ export const signArbitrary = (

assertIsDefined(state.wallet);

openWCDeeplink(state.wallet);
openWCDeeplink(state.wallet, state.openDeeplink);

return state.wallet.signArbitrary(chainId, signer, data);
};
Expand Down

0 comments on commit c9e3ffd

Please sign in to comment.