Skip to content

Commit

Permalink
Remove api key and id
Browse files Browse the repository at this point in the history
  • Loading branch information
noahsilencelab committed Aug 15, 2024
1 parent eb8862b commit d1eaf50
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/__test__/simulator/firebase.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ export class Firebase {
constructor() {
this.#app = initializeApp({
...firebaseConfig,
apiKey: "AIzaSyC28osouPPmNfhRWnAltwDT0Wu0IhoUTM4",//process.env.API_KEY!,
appId: "1:158872929823:web:f6afd4a0ac868c2b03b72a"//process.env.API_ID!,
apiKey: process.env.API_KEY!,
appId: process.env.API_ID!,
});
this.#auth = getAuth(this.#app);
this.db = getFirestore(this.#app);
Expand Down

0 comments on commit d1eaf50

Please sign in to comment.