Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions apps/portal/src/app/connect/auth/frameworks/next/page.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -261,10 +261,7 @@ export async function isLoggedIn() {
}

const authResult = await thirdwebAuth.verifyJWT({ jwt: jwt.value });
if (!authResult.valid) {
return false;
}
return true;
return authResult.valid;
}

export async function logout() {
Expand Down Expand Up @@ -306,7 +303,7 @@ const AuthenticatedPage = async () => {
export default AuthenticatedPage;
```

That's it! You know have a working SIWE Next.js app.
That's it! You now have a working SIWE Next.js app.

## Support

Expand Down
Loading