Skip to content

Commit

Permalink
fix: schedule learning time frequency (#7871)
Browse files Browse the repository at this point in the history
  • Loading branch information
arikchakma authored Dec 13, 2024
1 parent 2623d7a commit bfcb32b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Schedule/ScheduleEventModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ DESCRIPTION:${details}
LOCATION:${location}
DTSTART:${startDate.toISOString().replace(/-|:|\.\d+/g, '')}
DTEND:${endDate.toISOString().replace(/-|:|\.\d+/g, '')}
RRULE:FREQ=DAILY
RRULE:FREQ=WEEKLY;BYDAY=MO,TU,WE,TH,FR
BEGIN:VALARM
TRIGGER:-PT30M
Expand Down Expand Up @@ -151,7 +151,7 @@ Visit the roadmap at https://roadmap.sh/${roadmapId}
dates: `${startDate.toISO().replace(/-|:|\.\d+/g, '')}/${endDate.toISO().replace(/-|:|\.\d+/g, '')}`,
details,
location,
recur: 'RRULE:FREQ=DAILY',
recur: 'RRULE:FREQ=WEEKLY;BYDAY=MO,TU,WE,TH,FR',
}).toString();

setIsLoading(false);
Expand Down

0 comments on commit bfcb32b

Please sign in to comment.