diff options
author | Raphael Kabo <raphaelkabo@hey.com> | 2023-10-07 18:48:08 +0100 |
---|---|---|
committer | Raphael Kabo <raphaelkabo@hey.com> | 2023-10-07 18:48:08 +0100 |
commit | b8e424a8602b586bbf346cd27171ede570a54973 (patch) | |
tree | 84851929950e5574c4293bd19296a75d08b012a0 /src/helpers.ts | |
parent | d584ed85660a91433fffd5e2b0bfa9114114ea37 (diff) |
refactor: frontend event group routes
Diffstat (limited to 'src/helpers.ts')
-rw-r--r-- | src/helpers.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/helpers.ts b/src/helpers.ts index 72bbd17..6eda3d0 100644 --- a/src/helpers.ts +++ b/src/helpers.ts @@ -21,7 +21,7 @@ export function addToLog(process: string, status: string, message: string) { }); } -export function exportIcal(events: IEvent[], calendarName: string) { +export function exportICal(events: IEvent[], calendarName: string) { if (!events || events.length < 1) return; // Create a new icalGenerator... generator |