diff --git a/apps/web/components/v2/apps/DestinationCalendarSelector.tsx b/apps/web/components/v2/apps/DestinationCalendarSelector.tsx index 9703c23e2a..dab9bb270f 100644 --- a/apps/web/components/v2/apps/DestinationCalendarSelector.tsx +++ b/apps/web/components/v2/apps/DestinationCalendarSelector.tsx @@ -51,7 +51,7 @@ const DestinationCalendarSelector = ({ if (selected) { setSelectedOption({ value: `${selected.integration}:${selected.externalId}`, - label: `${selected.name} (${selected.externalId})` || "", + label: `${selected.name} (${selected.externalId})` || "", }); } }, [query.data?.connectedCalendars, value]); @@ -66,7 +66,7 @@ const DestinationCalendarSelector = ({ options: (selectedCalendar.calendars ?? []) .filter((cal) => cal.readOnly === false) .map((cal) => ({ - label: `${cal.name} (${cal.externalId})` || "", + label: `${cal.name} (${cal.externalId})` || "", value: `${cal.integration}:${cal.externalId}`, })), })) ?? []; @@ -83,9 +83,6 @@ const DestinationCalendarSelector = ({ title={`${t("select_destination_calendar")}: ${selectedOption?.label || ""}`}>