Skip to content

Commit

Permalink
Merge pull request #1400 from internxt/feat/return-private-key-deep-link
Browse files Browse the repository at this point in the history
feat: return private key in deep link
  • Loading branch information
ldandradesw authored Dec 23, 2024
2 parents 59e7f12 + 7e346ab commit 0c8b02f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export default function UniversalLinkSuccessView(): JSX.Element {
if (!newToken) return AppView.Login;
return `${DEEPLINK_SUCCESS_REDIRECT_BASE}?mnemonic=${btoa(user.mnemonic)}&token=${btoa(token)}&newToken=${btoa(
newToken,
)}`;
)}&privateKey=${btoa(user.privateKey)}`;
};

// Should redirect to login in the useEffect
Expand Down

0 comments on commit 0c8b02f

Please sign in to comment.