Skip to content

Commit

Permalink
Remove eudi from url
Browse files Browse the repository at this point in the history
  • Loading branch information
Jdu278 committed Aug 27, 2024
1 parent ac6a04b commit 9087757
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/QrCode.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const props = defineProps<{
qrCodeData: { client_id: string, request_uri: string }
}>();
const {client_id, request_uri} = props.qrCodeData;
const authenticationUrl = `eudi-openid4vp://${baseUrl}?client_id=${client_id}&request_uri=${request_uri}`
const authenticationUrl = `openid4vp://${baseUrl}?client_id=${client_id}&request_uri=${request_uri}`
const link = ref(authenticationUrl)
const level = ref<Level>('M')
Expand Down

0 comments on commit 9087757

Please sign in to comment.