DEV Community

Discussion on: Authenticate users with firebase and react.

Collapse
 
silenttush profile image
Tushar Kushwaha

for those having issues of session lost while refreshing.

add this in AuthProvider.js

const [token,setToken] = useState(localStorage.getItem("token"));

Collapse
 
devsunshine profile image
ajhopen

Great fix. My build was stuck that it has already logged in. This corrected it.