Skip to content

Commit 08cb3f6

Browse files
committed
chore(*) ran linting & formatting
1 parent f8241c4 commit 08cb3f6

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

examples/nextjs-ssr/app/page.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,7 @@ export default async function Home() {
2323
return (
2424
<div className="p-8 ">
2525
<h1 className="text-3xl font-bold mb-6">Firebase UI Demo (SSR)</h1>
26-
<div className="mb-6">
27-
{currentUser && <div>Welcome: {currentUser.email || currentUser.phoneNumber}</div>}
28-
</div>
26+
<div className="mb-6">{currentUser && <div>Welcome: {currentUser.email || currentUser.phoneNumber}</div>}</div>
2927
<div>
3028
<h2 className="text-2xl font-bold mb-4">Auth Screens</h2>
3129
<ul className="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 gap-4">

examples/nextjs-ssr/app/screens/sign-in-auth-screen-w-oauth/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export default function SignInAuthScreenWithOAuthPage() {
2525
return (
2626
<SignInAuthScreen
2727
onForgotPasswordClick={() => router.push("/password-reset-screen")}
28-
onSignIn={(credential) => {
28+
onSignIn={() => {
2929
router.push("/");
3030
}}
3131
>

0 commit comments

Comments
 (0)