From 54f8a7fb0520561bcd11950a60d0a64a13702cae Mon Sep 17 00:00:00 2001 From: jsun969 Date: Sat, 30 Nov 2024 15:11:31 +1030 Subject: [PATCH] fix: typo --- src/helpers/export-calendar.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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!'); };