chore: add testing logs

This commit is contained in:
Timothy Z. 2025-04-10 21:11:41 +03:00
parent 846445001c
commit b86887e111

View file

@ -55,6 +55,7 @@ const useAppleLogin = (): [() => Promise<AppleLoginResponse>, () => void] => {
const idToken = response.authorization.id_token;
const email = response.email || '';
const payload = jwtDecode.jwtDecode(response.authorization.id_token);
console.log('Decoded id_token:', payload); // eslint-disable-line no-console
const sub = payload.sub;
let name = '';