Skip to content

Commit

Permalink
ADD API error and UPDATE maintenance message
Browse files Browse the repository at this point in the history
  • Loading branch information
JessicaFM committed Oct 17, 2024
1 parent 1358c9c commit 879a385
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/Molecules/MaintenanceNotice.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<div class="maintenance-notice__box">
<v-icon right color="primary">mdi-alert</v-icon>
Please be aware that we will be performing routine server maintenance from
<b>October 21st to 23rd</b>. <br />During this period, you may experience
<b>October 21st to 24rd</b>. <br />During this period, you may experience
temporary disruptions. We apologize for any inconvenience and appreciate
your understanding.
</div>
Expand All @@ -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) {
Expand Down

0 comments on commit 879a385

Please sign in to comment.