diff --git a/web/components/layout/tabs.tsx b/web/components/layout/tabs.tsx index 9e26d4f5..e88f5385 100644 --- a/web/components/layout/tabs.tsx +++ b/web/components/layout/tabs.tsx @@ -9,8 +9,6 @@ type Tab = { title: string tabIcon?: ReactNode content: ReactNode - // If set, change the url to this href when the tab is selected - href?: string // If set, show a badge with this content badge?: string } @@ -33,25 +31,21 @@ export function UncontrolledTabs(props: TabProps & { activeIndex: number }) { currentPageForAnalytics, } = props const activeTab = tabs[activeIndex] as Tab | undefined // can be undefined in weird case - return ( <>