Skip to content

Commit e5dabea

Browse files
authored
Update index.vue
1 parent e7b18d9 commit e5dabea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pages/index.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -270,14 +270,14 @@
270270
const joinNowRoute = useJoinNowRoute();
271271
const seasonsStore = useSeasonsStore();
272272
273-
const timeUntilNextEvent = ref(new Date("2025-05-21T11:00:00+00:00").getTime() - Date.now());
273+
const timeUntilNextEvent = ref(new Date("2025-05-21T11:00:00+02:00").getTime() - Date.now());
274274
const timeUntilNextEventInterval = ref(null as null | number | NodeJS.Timeout);
275275
const timeUntilNextEventFormatted = computed(() => msToHuman(timeUntilNextEvent.value));
276276
277277
onMounted(() => {
278278
clearInterval(timeUntilNextEventInterval.value as never);
279279
timeUntilNextEventInterval.value = setInterval(() => {
280-
timeUntilNextEvent.value = new Date("2025-05-22T11:00:00+01:00").getTime() - Date.now();
280+
timeUntilNextEvent.value = new Date("2025-05-21T11:00:00+02:00").getTime() - Date.now();
281281
}, 798);
282282
});
283283

0 commit comments

Comments
 (0)