Skip to content

Commit

Permalink
fix: presentation QR
Browse files Browse the repository at this point in the history
  • Loading branch information
DaevMithran committed Mar 17, 2023
1 parent 541e8c5 commit c617edc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/screens/Identity/Identity.tsx
Expand Up @@ -406,7 +406,7 @@ const Identity = (): JSX.Element => {
const pres = await createPresentation(subjectDid, creds)
setPresentation(pres)
const jwt: string = pres.proof.jwt
if (jwt.length > 3500) {
if (jwt.length > 3000) {
setPresQR(await postJWT(jwt))
} else {
setPresQR(jwt)
Expand Down

0 comments on commit c617edc

Please sign in to comment.