Skip to content

Commit

Permalink
make the email dynamic
Browse files Browse the repository at this point in the history
  • Loading branch information
petar-i-todorov committed Jan 8, 2024
1 parent 736b17e commit 2428119
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/routes/author_.$authorSlug.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ export default function AuthorRoute() {
<div className="flex gap-3">
<span>
{author.email ? (
<Link to="mailto:[email protected]" aria-label="Send an email">
<Link to={`mailto:${author.email}`} aria-label="Send an email">
<Icon
name="mail"
className="h-[35px] w-[35px]"
Expand Down

0 comments on commit 2428119

Please sign in to comment.