Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #1066

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# FirebaseUI for Web — Auth

FirebaseUI is an open-source JavaScript library for Web that provides simple,
FirebaseUI is an open-source JavaScript library for the Web that provides simple,
customizable UI bindings on top of [Firebase](https://firebase.google.com) SDKs
to eliminate boilerplate code and promote best practices.

Expand Down Expand Up @@ -1390,7 +1390,7 @@ FirebaseUI is displayed.
firebase.auth.TwitterAuthProvider.PROVIDER_ID,
{
provider: firebase.auth.EmailAuthProvider.PROVIDER_ID,
// Whether the display name should be displayed in the Sign Up page.
// Whether the display name should be displayed on the Sign Up page.
requireDisplayName: true
},
{
Expand All @@ -1407,7 +1407,7 @@ FirebaseUI is displayed.
// Set to true if you only have a single federated provider like
// firebase.auth.GoogleAuthProvider.PROVIDER_ID and you would like to
// immediately redirect to the provider's site instead of showing a
// 'Sign in with Provider' button first. In order for this to take
// 'Sign in with Provider' button first. For this to take
// effect, the signInFlow option must also be set to 'redirect'.
immediateFederatedRedirect: false,
// tosUrl and privacyPolicyUrl accept either url string or a callback
Expand Down Expand Up @@ -1587,7 +1587,7 @@ var auth = firebase.auth();
var ui = new firebaseui.auth.AuthUI(auth);
// Set the tenant ID on Auth instance.
auth.tenantId = selectedTenantId;
// Start the sign-in flow in selected tenant.
// Start the sign-in flow in the selected tenant.
// All sign-in attempts will now use this tenant ID.
ui.start('#firebaseui-auth-container', selectedTenantConfig);
```
Expand All @@ -1600,7 +1600,7 @@ You can refer to the example in this
There is also a
[quickstart](https://cloud.google.com/identity-platform/docs/multi-tenancy-quickstart)
app available to demonstrate how to build a single sign-in page with the
FirebaseUI for two tenants which have different sets of identity providers
FirebaseUI for two tenants that have different sets of identity providers
enabled.


Expand Down Expand Up @@ -1871,7 +1871,7 @@ In React DOM applications you can use the [FirebaseUI Web React Wrapper](https:/

## Angular Setup

In Angular applications you can use this [FirebaseUI Web Angular Wrapper](https://github.com/RaphaelJenni/firebaseui-angular) from the community.
In Angular applications, you can use this [FirebaseUI Web Angular Wrapper](https://github.com/RaphaelJenni/firebaseui-angular) from the community.

## Known issues

Expand Down Expand Up @@ -1961,7 +1961,7 @@ removed.

- If you are using `firebaseui.auth.CredentialHelper.ACCOUNT_CHOOSER_COM`,
you need to switch to `firebaseui.auth.CredentialHelper.NONE` or
`firebaseui.auth.CredentialHelper.GOOGLE_YOLO`. Follow the instruction on
`firebaseui.auth.CredentialHelper.GOOGLE_YOLO`. Follow the instructions on
[one-tap sign-up](#one-tap-sign-up) when switching to the latter.
- If you are configuring `acUiConfig` in the UI configurations, this is no
longer supported and should not be used.
Expand Down