From fe542fb66bc9830e6947435c275f1a337fa9494c Mon Sep 17 00:00:00 2001 From: Charlotte Liang Date: Wed, 29 Jul 2026 19:26:40 -0700 Subject: [PATCH 1/2] update the example to reflect the correct authorized domain --- skills/firebase-auth-basics/SKILL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skills/firebase-auth-basics/SKILL.md b/skills/firebase-auth-basics/SKILL.md index 32579fc2..d601b35d 100644 --- a/skills/firebase-auth-basics/SKILL.md +++ b/skills/firebase-auth-basics/SKILL.md @@ -64,13 +64,13 @@ Configure Firebase Authentication in `firebase.json` by adding an 'auth' block: ``` { "auth": { + "authorizedDomains": ["localhost"], "providers": { "anonymous": true, "emailPassword": true, "googleSignIn": { "oAuthBrandDisplayName": "Your Brand Name", "supportEmail": "support@example.com", - "authorizedRedirectUris": ["https://example.com", "http://localhost"] } } } From 581866d7e939bf2962689c64c8a7f9682451b0df Mon Sep 17 00:00:00 2001 From: Charlotte Liang Date: Wed, 29 Jul 2026 19:29:50 -0700 Subject: [PATCH 2/2] remove the trailing comma --- skills/firebase-auth-basics/SKILL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skills/firebase-auth-basics/SKILL.md b/skills/firebase-auth-basics/SKILL.md index d601b35d..6720b919 100644 --- a/skills/firebase-auth-basics/SKILL.md +++ b/skills/firebase-auth-basics/SKILL.md @@ -70,7 +70,7 @@ Configure Firebase Authentication in `firebase.json` by adding an 'auth' block: "emailPassword": true, "googleSignIn": { "oAuthBrandDisplayName": "Your Brand Name", - "supportEmail": "support@example.com", + "supportEmail": "support@example.com" } } }