From 4d749b465e61d397b82c0f3347f5c59d9cb652f7 Mon Sep 17 00:00:00 2001 From: liyunze <50455574+liyunze-coding@users.noreply.github.com> Date: Mon, 7 Jul 2025 14:38:54 +1000 Subject: [PATCH] updated schedule --- src/components/socials/StreamSchedule.svelte | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/components/socials/StreamSchedule.svelte b/src/components/socials/StreamSchedule.svelte index 9be605e..5c36094 100644 --- a/src/components/socials/StreamSchedule.svelte +++ b/src/components/socials/StreamSchedule.svelte @@ -9,7 +9,16 @@ end: moment.Moment; }; - const myStreamSchedule: null | StreamScheduleDay[] = []; + const myStreamSchedule: null | StreamScheduleDay[] = [ + { + start: getUpcomingTimeDevTZ(4, "11:00"), + end: getUpcomingTimeDevTZ(4, "16:00"), + }, + { + start: getUpcomingTimeDevTZ(5, "11:00"), + end: getUpcomingTimeDevTZ(5, "16:00"), + }, + ]; /** * Calculates the upcoming specified time for a given day of the week in my timezone.