From 55f40728aa3ac88215f90afd8955643faaba9e16 Mon Sep 17 00:00:00 2001 From: Auri <68783120+imlayered@users.noreply.github.com> Date: Sun, 18 Aug 2024 21:59:10 -0400 Subject: [PATCH] Fix grammatical error Replace "Some systems experiencing issues" with "Some systems may be experiencing issues" --- script.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script.js b/script.js index 37c3b50..5665b0e 100644 --- a/script.js +++ b/script.js @@ -85,7 +85,7 @@ function updateOverallStatus(services) { let statusText = 'All systems operational'; let statusIcon = '✓'; // Checkmark for operational status if (overallStatus === 'Degraded') { - statusText = 'Some systems experiencing issues'; + statusText = 'Some systems may be experiencing issues'; statusIcon = '!'; // Exclamation mark for degraded status } else if (overallStatus === 'Issue') { statusText = 'Major outage detected'; @@ -212,4 +212,4 @@ function calculateGroupStatus(serviceGroup) { } else { return 'Degraded'; } -} \ No newline at end of file +}