Skip to content

Commit e74e8fd

Browse files
authored
Typo Fix (#361)
1 parent 1f9e797 commit e74e8fd

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

auth-next/custom-email-handler.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ function handleUserManagementQueryParams() {
2828
// Configure the Firebase SDK.
2929
// This is the minimum configuration required for the API to be used.
3030
const config = {
31-
'apiKey': "YOU_API_KEY" // Copy this key from the web initialization
32-
// snippet found in the Firebase console.
31+
'apiKey': "YOUR_API_KEY" // Copy this key from the web initialization
32+
// snippet found in the Firebase console.
3333
};
3434
const app = initializeApp(config);
3535
const auth = getAuth(app);

snippets/auth-next/custom-email-handler/auth_handle_mgmt_query_params.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ document.addEventListener('DOMContentLoaded', () => {
2323
// Configure the Firebase SDK.
2424
// This is the minimum configuration required for the API to be used.
2525
const config = {
26-
'apiKey': "YOU_API_KEY" // Copy this key from the web initialization
27-
// snippet found in the Firebase console.
26+
'apiKey': "YOUR_API_KEY" // Copy this key from the web initialization
27+
// snippet found in the Firebase console.
2828
};
2929
const app = initializeApp(config);
3030
const auth = getAuth(app);

0 commit comments

Comments
 (0)