We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 90de2ba commit 2a55970Copy full SHA for 2a55970
1 file changed
src/lib/firebase.ts
@@ -1,5 +1,5 @@
1
import { initializeApp } from 'firebase/app'
2
-import { getAuth, GithubAuthProvider, GoogleAuthProvider } from 'firebase/auth'
+import { getAuth } from 'firebase/auth'
3
import { FIREBASE_API_KEY } from 'src/config'
4
5
const firebaseConfig = {
@@ -12,7 +12,4 @@ if (!FIREBASE_API_KEY) {
12
// Initialize Firebase
13
const app = initializeApp(firebaseConfig)
14
const firebaseAuth = getAuth(app)
15
-const googleAuthProvider = new GoogleAuthProvider()
16
-const githubAuthProvider = new GithubAuthProvider()
17
-
18
-export { firebaseAuth, githubAuthProvider, googleAuthProvider }
+export { firebaseAuth }
0 commit comments