This commit is contained in:
Carl Downing
2023-07-30 08:10:45 -07:00
parent 7a23067e18
commit c8b559dce8
2 changed files with 2 additions and 4 deletions

View File

@@ -328,9 +328,7 @@ const CustomSMTP: FunctionComponent<PageComponentProps> = (
<ConfirmModal
title={`Email Sent`}
error={error}
description={
'Email sent successfully. Please check your inbox. Please don't forget to check spam. It should take couple of minutes to arrive.'
}
description={`Email sent successfully. It should take couple of minutes to arrive, please don't forget to check spam.`}
submitButtonType={ButtonStyleType.NORMAL}
submitButtonText={'Close'}
onSubmit={async () => {

View File

@@ -19,7 +19,7 @@ router.post(
): Promise<void> => {
try {
// middleware marks the probe as alive.
// so we dont need to do anything here.
// so we don't need to do anything here.
return Response.sendEmptyResponse(req, res);
} catch (err) {
return next(err);