Skip to content

Commit

Permalink
fix: don't show 'send event details to' for team events (#14093)
Browse files Browse the repository at this point in the history
Co-authored-by: CarinaWolli <wollencarina@gmail.com>
  • Loading branch information
CarinaWolli and CarinaWolli committed Mar 14, 2024
1 parent 28c793c commit 71b0dd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/web/components/eventtype/EventAdvancedTab.tsx
Expand Up @@ -216,7 +216,7 @@ export const EventAdvancedTab = ({ eventType, team }: Pick<EventTypeSetupProps,
/>
</div>
)}
{!useEventTypeDestinationCalendarEmail && verifiedSecondaryEmails.length > 0 && (
{!useEventTypeDestinationCalendarEmail && verifiedSecondaryEmails.length > 1 && !team && (
<div className="w-full">
<SelectField
label={t("send_event_details_to")}
Expand Down

0 comments on commit 71b0dd2

Please sign in to comment.