remove passing in as object

This commit is contained in:
Om Ray 2022-11-11 13:29:31 -05:00 committed by GitHub
parent 41910ff1b5
commit 656d586b52
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -207,7 +207,7 @@ const EventTypePage = (props: inferSSRProps<typeof getServerSideProps>) => {
currentUserMembership={props.currentUserMembership}
/>
),
limits: <EventLimitsTab eventType={{ eventType: eventType }} />,
limits: <EventLimitsTab eventType={eventType} />,
advanced: <EventAdvancedTab eventType={eventType} team={team} />,
recurring: <EventRecurringTab eventType={eventType} />,
apps: <EventAppsTab eventType={{ ...eventType, URL: permalink }} />,