chore: change "url" to "host" for QR

This commit is contained in:
Phan An 2024-04-19 14:06:58 +02:00
parent 218d25add6
commit ddd5f3f38e

View file

@ -20,7 +20,7 @@ const oneTimeToken = ref('')
watch(oneTimeToken, () => {
qrCodeData.value = base64Encode(JSON.stringify({
token: oneTimeToken.value,
url: window.BASE_URL
host: window.BASE_URL
}))
})