From 879a3854e9e81ef846785efb4d107207f20ec86a Mon Sep 17 00:00:00 2001 From: "Jessica F. Martinez" Date: Thu, 17 Oct 2024 11:29:21 +0200 Subject: [PATCH] ADD API error and UPDATE maintenance message --- components/Molecules/MaintenanceNotice.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/components/Molecules/MaintenanceNotice.vue b/components/Molecules/MaintenanceNotice.vue index f13421cb..f8a8e836 100644 --- a/components/Molecules/MaintenanceNotice.vue +++ b/components/Molecules/MaintenanceNotice.vue @@ -3,7 +3,7 @@
mdi-alert Please be aware that we will be performing routine server maintenance from - October 21st to 23rd.
During this period, you may experience + October 21st to 24rd.
During this period, you may experience temporary disruptions. We apologize for any inconvenience and appreciate your understanding.
@@ -15,8 +15,8 @@ export default { computed: { isMessageVisible() { const dateRange = { - start: new Date('2024-10-18'), - end: new Date('2024-10-24'), + start: new Date('2024-10-18T10:00:00+02:00'), + end: new Date('2024-10-24T13:00:00+02:00'), }; if (new Date() >= dateRange.start && new Date() <= dateRange.end) {