react-firebase-authentication icon indicating copy to clipboard operation
react-firebase-authentication copied to clipboard

🔥 Boilerplate Project for Authentication with Firebase in React.

Results 16 react-firebase-authentication issues
Sort by recently updated
recently updated
newest added

I got white page only when i run in dev mode

Hi @rwieruch! I loved this tutorial and to get a better understanding of what's going on I started to play with it. And soon I started refactoring the code to...

Hi Robin, big fan of your work on React! I've been trying to tackle the problem you described in [React Firebase Auth Persistence with Local Storage](https://www.robinwieruch.de/react-firebase-auth-persistence/): the delay between when...

help wanted
question

this block of code in firebase.js is throwing an error: //if (!dbUser.roles) {...} error ```Unhandled Rejection (TypeError): Cannot read property 'roles' of null```

bug
wontfix

Hello, Apologies if this is badly worded or an entirely stupid question. I have followed this fantastic tutorial and it's working perfectly. I would now like to allow logged-in users...

One question, are the firebase config values ​​(ie the apiKey, appId, etc ..) meant to be exposed or should we hide them in some way? Thank you!

I removed the email verification. My submit function is like : onSubmit = event => { const { username, email, passwordOne, isAdmin } = this.state; const roles = {}; if...

Once I implemented the chapter: `Email Verification` I get the warning: ``` Functions are not valid as a React child. This may happen if you return a Component instead of...

I was trying to understand but most of the new developers like me are not familiar with the HOC. So its a request if you can implement it using the...

Within the App class this.props.firebase.auth.onAuthStateChanged needs to be updated to this.props.firebase.auth().onAuthStateChanged to avoid errors.