From 1a76e9d40ac77758fae987dc119e26a3f3114ff1 Mon Sep 17 00:00:00 2001 From: "Rayyan (Rayy)" Date: Tue, 7 Nov 2023 15:24:32 +0000 Subject: [PATCH] Fix typo on line 33 ("FirebaseConfig to "firebaseConfig") --- src/App.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.js b/src/App.js index 1e4acac..2822e4b 100644 --- a/src/App.js +++ b/src/App.js @@ -30,7 +30,7 @@ import { StorageContext } from "./contexts/StorageContext"; function App() { - const FBapp = initializeApp(FirebaseConfig) + const FBapp = initializeApp(firebaseConfig) const FBauth = getAuth(FBapp) const FBdb = getFirestore(FBapp) const FBstorage = getStorage(FBapp)