u could try to restore the jwt in local storage , and access it when available by this example
authorization: localStorage.getItem(“token”) !== null && 'Bearer '+ localStorage.getItem(“token”) || “”
u could try to restore the jwt in local storage , and access it when available by this example
authorization: localStorage.getItem(“token”) !== null && 'Bearer '+ localStorage.getItem(“token”) || “”