Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions skills/firebase-auth-basics/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"]

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Removing authorizedRedirectUris leaves a trailing comma on the supportEmail line. Standard JSON does not support trailing commas, which makes this example invalid. Please remove the trailing comma from supportEmail.

"supportEmail": "support@example.com"
}
}
}
Expand Down
Loading