0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-02-03 21:48:55 -05:00

refactor(console): fix contact email (#3517)

This commit is contained in:
Gao Sun 2023-03-20 08:49:53 +08:00 committed by GitHub
parent ec7e17f2c5
commit 69f563a056
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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) => {