schoolbox web extension :)
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

docs: fix typo

willow 45d79564 6787a78f

+1 -1
+1 -1
src/utils/periodUtils.ts
··· 113 113 114 114 function extractTimes(periodTime: string): { start: Date; end: Date } { 115 115 try { 116 - const times = periodTime.split("–"); // en dash 116 + const times = periodTime.split("–"); // em dash 117 117 118 118 const [start, end] = times.map((time, index) => { 119 119 const [hourStr, minuteStr] = time.split(":");