Expo - can't login with social provider

I'm trying to use Expo plugin to login with Github provider, when I click the button the redirect is working correctly but I'm getting session back πŸ˜•

Here are the logs from useSession hook:
 (NOBRIDGE) LOG  {"data": null, "error": null, "isPending": true, "isRefetching": false}
 (NOBRIDGE) LOG  {"data": null, "error": null, "isPending": true, "isRefetching": true}
 (NOBRIDGE) LOG  {"data": null, "error": null, "isPending": false, "isRefetching": false}
 (NOBRIDGE) LOG  {"data": null, "error": null, "isPending": true, "isRefetching": true}
 (NOBRIDGE) LOG  {"data": null, "error": null, "isPending": false, "isRefetching": false}
 (NOBRIDGE) LOG  {"data": null, "error": null, "isPending": true, "isRefetching": true}
 (NOBRIDGE) LOG  {"data": {"redirect": true, "url": "https://github.com/login/oauth/authorize?response_type=code&client_id=123&state=4hbPIPGNOYvNEqIj4W80dMpmXRq1&scope=user%3Aemail&redirect_uri=http%3A%2F%2Flocalhost%3A3000%2Fapi%2Fauth%2Fcallback%2Fgithub"}, "error": null}
 (NOBRIDGE) LOG  {"data": null, "error": null, "isPending": false, "isRefetching": false}


The backend is not throwing any error, but the redirect inside the app is not working. How can I fix it?

(the email method is working fine)
I'm on 1.1.10
Was this page helpful?