Skip to content

Commit

Permalink
fix mailto
Browse files Browse the repository at this point in the history
  • Loading branch information
fallow64 committed Mar 30, 2024
1 parent a6b4bb2 commit 6be9c75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ import Header from "../components/Header.astro";
const e = "com";

const emailElem = document.getElementById("a-email");
emailElem.href = `${a}${b}${c}@${d}${e}`;
emailElem.href = `mailto:${a}${b}${c}@${d}${e}`;
</script>
</main>
</Layout>

0 comments on commit 6be9c75

Please sign in to comment.