Firebase – After onauthstatechanged still currentuser is null
I am trying to make Axios request with Bearer token. This is my Axios function. import axios from "axios" import {auth} from '../../config/firebase.config' export function createRequest(upload) { const tenantId = localStorage.getItem("tenantId") const isUser = auth.onAuthStateChanged((user) => { if (user) {…