Skip to content

Commit 3d53fe1

Browse files
authored
Merge pull request #1359 from onflow/cf/update-main-again
Update feature with main
2 parents 84bd871 + 43b825e commit 3d53fe1

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)