We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b9d233 commit db80afcCopy full SHA for db80afc
apps/web/components/eventtype/EventTypeSingleLayout.tsx
@@ -209,10 +209,8 @@ function EventTypeSingleLayout({
209
}`,
210
});
211
}
212
- if (isManagedEventType || isChildrenManagedEventType) {
213
- // Removing apps and workflows for manageg event types by admins v1
214
- navigation.splice(0, 1);
215
- } else {
+ const showWebhooks = !(isManagedEventType || isChildrenManagedEventType);
+ if (showWebhooks) {
216
navigation.push({
217
name: "webhooks",
218
href: `/event-types/${eventType.id}?tabName=webhooks`,
0 commit comments