fix: improve video conference link positioning and null safety

- Fix calendarUtils.ts null safety for calendars[id] access
- Update video conference link to be added on line 2 instead of line 3
- Update regex in handleDeleteVideoConference to match new format
- Update all test cases for videoConferenceUtils to match new format
- Add null checks in updateCalsDetails function
This commit is contained in:
lenhanphung
2025-10-03 10:46:34 +07:00
parent ff54840ac8
commit cea576e5e8
4 changed files with 19 additions and 19 deletions
+1 -1
View File
@@ -42,7 +42,7 @@ export function addVideoConferenceToDescription(
description: string,
meetingLink: string
): string {
const footer = `\n\nVisio: ${meetingLink}`;
const footer = `\nVisio: ${meetingLink}`;
return description + footer;
}