From 69f563a05669885df2d4d2de7652cdd769bfd350 Mon Sep 17 00:00:00 2001 From: Gao Sun Date: Mon, 20 Mar 2023 08:49:53 +0800 Subject: [PATCH] refactor(console): fix contact email (#3517) --- .../src/pages/Profile/containers/DeleteAccountModal/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/console/src/pages/Profile/containers/DeleteAccountModal/index.tsx b/packages/console/src/pages/Profile/containers/DeleteAccountModal/index.tsx index c06e757a0..bf3bf5a17 100644 --- a/packages/console/src/pages/Profile/containers/DeleteAccountModal/index.tsx +++ b/packages/console/src/pages/Profile/containers/DeleteAccountModal/index.tsx @@ -13,7 +13,7 @@ type Props = { onClose: () => void; }; -const contactUsEmail = 'logto@silverhand.io'; +const contactUsEmail = 'contact@logto.io'; const mailToLink = `mailto:${contactUsEmail}?subject=Account%20Deletion%20Request`; const DeleteAccountModal = ({ isOpen, onClose }: Props) => {