From f25605ef4d0eda87f490269202f327224e3ffa4e Mon Sep 17 00:00:00 2001 From: Peer Richelsen Date: Thu, 11 Jan 2024 21:42:29 +0000 Subject: [PATCH] chore: corrected event-types icons (#13173) --- apps/web/components/eventtype/EventTypeSingleLayout.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/web/components/eventtype/EventTypeSingleLayout.tsx b/apps/web/components/eventtype/EventTypeSingleLayout.tsx index 6fa3669abc..750f0bed44 100644 --- a/apps/web/components/eventtype/EventTypeSingleLayout.tsx +++ b/apps/web/components/eventtype/EventTypeSingleLayout.tsx @@ -116,7 +116,7 @@ function getNavigation(props: { { name: "workflows", href: `/event-types/${eventType.id}?tabName=workflows`, - icon: PhoneCall, + icon: Zap, info: `${enabledWorkflowsNumber} ${t("active")}`, }, ]; @@ -219,7 +219,7 @@ function EventTypeSingleLayout({ navigation.push({ name: "instant_tab_title", href: `/event-types/${eventType.id}?tabName=instant`, - icon: Zap, + icon: PhoneCall, info: `instant_event_tab_description`, }); }