Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | 3x | import { sendGAEvent } from "@/utils/ReactGA/SendGAEvent"; import { helpDeskContact } from "../utils"; export const ConfirmEmail = () => ( <p> Refresh your inbox, check your SPAM filters, then contact the OneMAC Help Desk{" "} <a className="text-primary underline hover:no-underline" href={`mailto:${helpDeskContact.email}`} onClick={() => sendGAEvent("support_contact_email")} > {helpDeskContact.email} </a>{" "} or call {helpDeskContact.phone} or contact your state lead. </p> ); |