Skip to content

Commit 43b825e

Browse files
committed
Merge branch 'main' into cf/update-main-again
2 parents 84bd871 + d0e440c commit 43b825e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/tools/kit/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -303,9 +303,9 @@ function AuthComponent() {
303303

304304
return (
305305
<div>
306-
{user.loggedIn ? (
306+
{user?.loggedIn ? (
307307
<>
308-
<p>Logged in as {user.addr}</p>
308+
<p>Logged in as {user?.addr}</p>
309309
<button onClick={unauthenticate}>Logout</button>
310310
</>
311311
) : (

0 commit comments

Comments
 (0)