Skip to content

Commit c817daf

Browse files
fix: replace ' with &apos
1 parent 03af50d commit c817daf

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

src/app/dashboard/page.tsx

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,21 +27,15 @@ export default async function DashboardPage() {
2727
<span>Home</span>
2828
</Link>
2929
<form action={logout}>
30-
<button
31-
type="submit"
32-
className="btn btn-neutral btn-outline"
33-
>
30+
<button type="submit" className="btn btn-neutral btn-outline">
3431
<span>Log out</span>
3532
</button>
3633
</form>
3734
</div>
38-
39-
4035

4136
<p className="mt-4 text-neutral-600">
42-
You're logged in as: <span className="font-bold">{user.email}</span>.
37+
You&apos;re logged in as: <span className="font-bold">{user.email}</span>.
4338
</p>
44-
4539
</main>
4640
);
4741
}

0 commit comments

Comments
 (0)