-
Notifications
You must be signed in to change notification settings - Fork 73
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: Added Return_To param to request URL #219
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
packages/core/src/bridge.ts
Outdated
)}${bridge_url && bridge_url !== DEFAULT_BRIDGE_URL ? `&b=${encodeURIComponent(bridge_url)}` : ''}`, | ||
)}${ | ||
bridge_url && bridge_url !== DEFAULT_BRIDGE_URL ? `&b=${encodeURIComponent(bridge_url)}` : '' | ||
}&return_to=${encodeURIComponent(window.location.href)}`, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should only be appended when tapping the universal link button, this will include it in the QR code as well
@@ -30,7 +30,7 @@ const QRState: FC<Props> = ({ qrData, showQR, setShowQR }) => { | |||
<> | |||
<div className="mb-10 space-y-4 md:hidden"> | |||
<motion.a | |||
href={qrData ?? ''} | |||
href={qrData ? qrData + `&return_to=${encodeURIComponent(window.location.href)}` : ''} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
subsequent improvement we can handle this in the controller
No description provided.