Firebase – signing in with custom token doesn't pass the user details
I am using signInWithCustomToken() after initiating it on the server. async function signinWithToken(data, sendResponse) { const { token } = data; console.log(token); signInWithCustomToken(auth, token) .then((user) => { console.log(user); sendResponse({ success: true, user }); }) .catch((err) => { sendResponse({ success: false,…