diff --git a/src/helpers/export-calendar.ts b/src/helpers/export-calendar.ts index 7811804..e6d7003 100644 --- a/src/helpers/export-calendar.ts +++ b/src/helpers/export-calendar.ts @@ -13,7 +13,7 @@ export const useExportCalendar = () => { })); const resStr = res.map((d) => d.name + '\n\n' + d.classes).join('\n\n'); const advertisement = - 'Planned with MyTimeTable\nhttps://mytimetable.csclub.org.au/'; + 'Planned with MyTimetable\nhttps://mytimetable.csclub.org.au/'; await navigator.clipboard.writeText(resStr + '\n\n\n' + advertisement); toast.success('Copied to clipboard!'); };