<@!281186600677801984> the error is in how `atob` ...
# support-questions
r
@User the error is in how
atob
is used in the frontend. It should be changed to this:
Copy code
function b64DecodeUnicode(str) {
    return decodeURIComponent(Array.prototype.map.call(atob(str), function (c) {
        return '%' + ('00' + c.charCodeAt(0).toString(16)).slice(-2)
    }).join(''))
}

let tokenInfo = JSON.parse(b64DecodeUnicode(frontToken))

console.log(tokenInfo);