diff --git a/CHANGELOG.md b/CHANGELOG.md
index f8c896e..c96bf4c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -10,6 +10,7 @@ and this project adheres to
### Added
+- ✨(domains) enhance required action modal content
- ✨(domains) add periodic tasks to fetch domain status
- 🧑💻(docker) add celery beat to manage periodic tasks
- ✨(organization) add metadata field #790
diff --git a/src/frontend/apps/desk/src/features/mail-domains/domains/__tests__/MailDomainView.test.tsx b/src/frontend/apps/desk/src/features/mail-domains/domains/__tests__/MailDomainView.test.tsx
index 87d617a..c2d2359 100644
--- a/src/frontend/apps/desk/src/features/mail-domains/domains/__tests__/MailDomainView.test.tsx
+++ b/src/frontend/apps/desk/src/features/mail-domains/domains/__tests__/MailDomainView.test.tsx
@@ -89,7 +89,7 @@ describe('
+
{t(
'The domain is currently in action required status. Please take the necessary actions to resolve those following issues.',
)}
-
- {t('Actions required detail')}
+
+
{mailDomain.action_required_details &&
@@ -105,7 +105,6 @@ export const MailDomainView = ({ mailDomain, onMailDomainUpdate }: Props) => {
{mailDomain.expected_config && (
{
overflowWrap: 'break-word',
}}
>
- {t('Add the following DNS values:')}
+ {t(
+ 'You can resolve the above issues by applying the following configurations on your domain:',
+ )}
{mailDomain.expected_config.map((item, index) => (
- {
>
{item.target && (
<>
- {item.target.toUpperCase()} -{' '}
+ {item.target}{' '}
>
)}
- {item.type.toUpperCase()} {t('with value:')}{' '}
+
+ IN {item.type.toUpperCase()}
+ {' '}
{item.value}