We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6be86bf commit 14a2848Copy full SHA for 14a2848
examples/react/src/main.tsx
@@ -30,13 +30,13 @@ const allRoutes = [...routes, ...hiddenRoutes];
30
auth.authStateReady().then(() => {
31
ReactDOM.createRoot(root).render(
32
<BrowserRouter>
33
- {/* <FirebaseUIProvider
+ <FirebaseUIProvider
34
ui={ui}
35
policies={{
36
termsOfServiceUrl: "https://www.google.com",
37
privacyPolicyUrl: "https://www.google.com",
38
}}
39
- > */}
+ >
40
<ThemeToggle />
41
<Routes>
42
<Route path="/" element={<App />} />
@@ -46,7 +46,7 @@ auth.authStateReady().then(() => {
46
))}
47
</Route>
48
</Routes>
49
- {/* </FirebaseUIProvider> */}
+ </FirebaseUIProvider>
50
</BrowserRouter>
51
);
52
});
0 commit comments