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.
2 parents 82c1344 + c7c2c10 commit 2d13b64Copy full SHA for 2d13b64
docs/recipes/auth.md
@@ -185,15 +185,16 @@ function LoginPage() {
185
firebaseAuth={firebase.auth()}
186
/>
187
<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
- }
+ <h2>Auth</h2>
+ {
+ !isLoaded(auth)
+ ? <span>Loading...</span>
+ : isEmpty(auth)
+ ? <span>Not Authed</span>
+ : <pre>{JSON.stringify(auth, null, 2)}</pre>
+ }
196
</div>
197
+ </div>
198
)
199
}
200
0 commit comments