File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 270
270
const joinNowRoute = useJoinNowRoute ();
271
271
const seasonsStore = useSeasonsStore ();
272
272
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 ());
274
274
const timeUntilNextEventInterval = ref (null as null | number | NodeJS .Timeout );
275
275
const timeUntilNextEventFormatted = computed (() => msToHuman (timeUntilNextEvent .value ));
276
276
277
277
onMounted (() => {
278
278
clearInterval (timeUntilNextEventInterval .value as never );
279
279
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 ();
281
281
}, 798 );
282
282
});
283
283
You can’t perform that action at this time.
0 commit comments