diff --git a/frontend-modern/src/components/Alerts/ActivationBanner.tsx b/frontend-modern/src/components/Alerts/ActivationBanner.tsx index ecfec49..6f3b04a 100644 --- a/frontend-modern/src/components/Alerts/ActivationBanner.tsx +++ b/frontend-modern/src/components/Alerts/ActivationBanner.tsx @@ -34,10 +34,10 @@ export function ActivationBanner(props: ActivationBannerProps): JSX.Element { const observationSummary = createMemo(() => { const count = violationCount(); if (count <= 0) { - return 'No alert violations detected during observation yet.'; + return 'All systems healthy — no alerts triggered.'; } const label = count === 1 ? 'issue' : 'issues'; - return `${count} ${label} detected during observation.`; + return `${count} ${label} detected.`; }); const handleReview = async () => { @@ -76,12 +76,12 @@ export function ActivationBanner(props: ActivationBannerProps): JSX.Element {

- Monitoring is live; notifications will start after you review settings. + Monitoring is active. Review your settings to enable notifications.

{observationSummary()}

- 24h observation ending—activate to start notifications. + 24-hour setup period ending soon — activate to start receiving notifications.

diff --git a/frontend-modern/src/components/Alerts/ActivationModal.tsx b/frontend-modern/src/components/Alerts/ActivationModal.tsx index f68c4ef..937e40b 100644 --- a/frontend-modern/src/components/Alerts/ActivationModal.tsx +++ b/frontend-modern/src/components/Alerts/ActivationModal.tsx @@ -163,13 +163,13 @@ export function ActivationModal(props: ActivationModalProps): JSX.Element { if (success) { await props.refreshActiveAlerts(); - showSuccess('Alert notifications activated. Notifications will now dispatch to configured destinations.'); + showSuccess('Notifications activated! You'll now receive alerts when issues are detected.'); if (props.onActivated) { await props.onActivated(); } props.onClose(); } else { - showError('Failed to activate alert notifications. Please try again.'); + showError('Unable to activate notifications. Please try again.'); } setIsSubmitting(false); @@ -188,9 +188,9 @@ export function ActivationModal(props: ActivationModalProps): JSX.Element {
-

Review alerts before activating

+

Ready to activate notifications

- Monitoring is already running. Confirm thresholds and destinations before enabling notifications. + Review your alert thresholds and notification channels before turning on alerts.