1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-01 06:50:26 +02:00

fix: schedule learning time frequency (#7871)

This commit is contained in:
Arik Chakma
2024-12-13 21:19:59 +06:00
committed by GitHub
parent 2623d7abeb
commit bfcb32bd57

View File

@@ -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
@@ -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);