diff --git a/pages/staff/[staff_identifier].tsx b/pages/staff/[staff_identifier].tsx index 47598dd..d91e4df 100644 --- a/pages/staff/[staff_identifier].tsx +++ b/pages/staff/[staff_identifier].tsx @@ -38,6 +38,8 @@ function StaffMember(props: Props) { staff_member.description || `${staff_member.name} at The Stuyvesant Spectator`; + const display_email = staff_member.email.replaceAll("@", " [ at ] ").replaceAll(".", " [ dot ] "); + return (
@@ -50,9 +52,9 @@ function StaffMember(props: Props) { ({staff_member.slug}) - - {staff_member.email} - + + {display_email} +

{staff_member.description}