Skip to content

Commit 2d13b64

Browse files
authored
fix(examples): adds missing div tag to Firebase UI React example - @anotherstarburst
2 parents 82c1344 + c7c2c10 commit 2d13b64

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

docs/recipes/auth.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -185,15 +185,16 @@ function LoginPage() {
185185
firebaseAuth={firebase.auth()}
186186
/>
187187
<div>
188-
<h2>Auth</h2>
189-
{
190-
!isLoaded(auth)
191-
? <span>Loading...</span>
192-
: isEmpty(auth)
193-
? <span>Not Authed</span>
194-
: <pre>{JSON.stringify(auth, null, 2)}</pre>
195-
}
188+
<h2>Auth</h2>
189+
{
190+
!isLoaded(auth)
191+
? <span>Loading...</span>
192+
: isEmpty(auth)
193+
? <span>Not Authed</span>
194+
: <pre>{JSON.stringify(auth, null, 2)}</pre>
195+
}
196196
</div>
197+
</div>
197198
)
198199
}
199200

0 commit comments

Comments
 (0)