Skip to content

Commit

Permalink
fix deep links url
Browse files Browse the repository at this point in the history
  • Loading branch information
lukachi committed Sep 6, 2024
1 parent 161c45b commit 3be9cc0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/pages/QueryIdentity/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,9 @@ export default function QueryIdentity() {

setQrCode(requestPayload)

setDeepLink('https://app.stage.rarime.com' + Buffer.from(requestPayload).toString('base64'))
setDeepLink(
'https://app.stage.rarime.com/external/' + Buffer.from(requestPayload).toString('base64'),
)
}, [])

const fetchResponse = useCallback(async () => {
Expand Down

0 comments on commit 3be9cc0

Please sign in to comment.