Did your login page successfully link with firebase? Because I was watching the video and firebase checks to make sure the two have successfully linked for him after step 5 that firebase walks you through, but, it did not do that for me. Did I do something wrong?
Yea mine didn’t do that either and so I built a few other tests to see if it would and it still didn’t so I’m assuming that’s now not a part of the setup for whatever reason. However, now when I go into my firebase project it shows reads and writes in a little graph reflecting the times I’ve built the project so I would say that means it’s all linked. So if you have those I would say you’re good and everything is linked!
Try running the database is “test mode”… Basically allow everything on the rules… This will make sure that your database is properly connected and can be accessed… Its probably being blacked because you arw not authenticated
oh! Ignore what i said sammy!
how to we run the data base in test mode?
for me i just allow both read and write
rules should look like this
service cloud.firestore {
match /databases/{database}/documents {
match /{document=**} {
allow read, write;
}
}
}