From ec0352da203e52423c15424247da6822736ca53d Mon Sep 17 00:00:00 2001 From: Hariom Balhara Date: Tue, 20 Sep 2022 15:57:15 +0530 Subject: [PATCH] Fix wrong team link (#4620) --- apps/web/components/v2/eventtype/EventTypeSingleLayout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/components/v2/eventtype/EventTypeSingleLayout.tsx b/apps/web/components/v2/eventtype/EventTypeSingleLayout.tsx index a76ca2fe27..ffee551b7c 100644 --- a/apps/web/components/v2/eventtype/EventTypeSingleLayout.tsx +++ b/apps/web/components/v2/eventtype/EventTypeSingleLayout.tsx @@ -137,7 +137,7 @@ function EventTypeSingleLayout({ if (team) navigation.splice(2, 0, { name: "scheduling_type", - href: `team`, + href: `/event-types/${eventType.id}?tabName=team`, icon: Icon.FiUsers, info: eventType.schedulingType === "COLLECTIVE" ? "collective" : "round_robin", });