Skip to content

Commit

Permalink
fix: improve sign up -> verified page
Browse files Browse the repository at this point in the history
  • Loading branch information
joaquimds committed Mar 11, 2024
1 parent 050f7d5 commit b8fc633
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nextjs/src/app/account/verify/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export default function Verify() {

if (success) {
// Use a normal <a> here to fix weird behavior if the user was already logged in
return <h2>Verified! Please <a href="/login">log in.</a></h2>
return <h2>Verified! You may now <a className="underline" href="/login">log in.</a></h2>
}

if (error || data?.verifyAccount?.errors) {
Expand Down

0 comments on commit b8fc633

Please sign in to comment.