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 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
You can’t perform that action at this time.
0 commit comments