Skip to content

Commit

Permalink
fixes mailto variable
Browse files Browse the repository at this point in the history
  • Loading branch information
christianhelp committed Dec 17, 2024
1 parent ee45a72 commit 106ae59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/web/src/app/admin/users/[slug]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export default async function Page({ params }: { params: { slug: string } }) {
<Button variant={"outline"}>Hacker Profile</Button>
</Link>

<Link href="mailto:${user.email}">
<Link href={`mailto:${user.email}`}>
<Button variant={"outline"}>Email Hacker</Button>
</Link>

Expand Down

0 comments on commit 106ae59

Please sign in to comment.