Skip to content
This repository was archived by the owner on Jan 22, 2026. It is now read-only.

Commit f10f3d0

Browse files
author
Andrew Schneider
authored
Merge pull request #1757 from blockchain/deeplink-params
fix(LinkContext): Remove double-uri encoding
2 parents 1e8c5ec + 9184cc7 commit f10f3d0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • packages/blockchain-wallet-v4-frontend/src/scenes/VerifyEmailToken

packages/blockchain-wallet-v4-frontend/src/scenes/VerifyEmailToken/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ class VerifyEmailToken extends React.PureComponent {
4444
const deepLink = `${window.location.origin}/login?${deepLinkParams}`
4545

4646
const params = new URLSearchParams()
47-
params.set('link', encodeURIComponent(deepLink))
47+
params.set('link', deepLink)
4848
params.set('isi', PARAM_ISI)
4949
params.set('ibi', PARAM_IBI)
5050
params.set('apn', PARAM_APN)

0 commit comments

Comments
 (0)