Skip to content

Commit 657f94c

Browse files
committed
chore(*): fixed linting
1 parent df5b407 commit 657f94c

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

examples/react/src/App.tsx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@
1414
* limitations under the License.
1515
*/
1616

17+
import { useUI } from "@invertase/firebaseui-react";
18+
import { multiFactor, sendEmailVerification, signOut } from "firebase/auth";
1719
import { Link, useNavigate } from "react-router";
18-
import { routes } from "./routes";
19-
import { useUser } from "./firebase/hooks";
2020
import { auth } from "./firebase/firebase";
21-
import { multiFactor, sendEmailVerification, signOut } from "firebase/auth";
22-
import { useUI } from "@invertase/firebaseui-react";
21+
import { useUser } from "./firebase/hooks";
22+
import { routes } from "./routes";
2323

2424
function App() {
2525
const user = useUser();
@@ -35,9 +35,9 @@ function UnauthenticatedApp() {
3535
const ui = useUI();
3636

3737
// This can trigger if the user is not on a screen already, and gets an MFA challenge - e.g. on One-Tap sign in.
38-
// if (ui.multiFactorResolver) {
39-
// return <MultiFactorAuthAssertionScreen />;
40-
// }
38+
if (ui.multiFactorResolver) {
39+
return <MultiFactorAuthAssertionScreen />;
40+
}
4141

4242
return (
4343
<div className="max-w-sm mx-auto pt-36 space-y-6 pb-36">

0 commit comments

Comments
 (0)