Skip to content

Commit

Permalink
Typo Fix (#361)
Browse files Browse the repository at this point in the history
  • Loading branch information
kbsanders authored Nov 10, 2023
1 parent 1f9e797 commit e74e8fd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions auth-next/custom-email-handler.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ function handleUserManagementQueryParams() {
// Configure the Firebase SDK.
// This is the minimum configuration required for the API to be used.
const config = {
'apiKey': "YOU_API_KEY" // Copy this key from the web initialization
// snippet found in the Firebase console.
'apiKey': "YOUR_API_KEY" // Copy this key from the web initialization
// snippet found in the Firebase console.
};
const app = initializeApp(config);
const auth = getAuth(app);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ document.addEventListener('DOMContentLoaded', () => {
// Configure the Firebase SDK.
// This is the minimum configuration required for the API to be used.
const config = {
'apiKey': "YOU_API_KEY" // Copy this key from the web initialization
// snippet found in the Firebase console.
'apiKey': "YOUR_API_KEY" // Copy this key from the web initialization
// snippet found in the Firebase console.
};
const app = initializeApp(config);
const auth = getAuth(app);
Expand Down

0 comments on commit e74e8fd

Please sign in to comment.