sveltefire
sveltefire copied to clipboard
Documentation error on getting started
Step 2 says
const db = getFirestore(app);
and then
<FirebaseApp {auth} {firestore}>
This is an error because firestore is not defined.
Step 2 should say
const firestore = getFirestore(app);