diff --git a/frontend/web/components/navigation/TabMenu/Tabs.tsx b/frontend/web/components/navigation/TabMenu/Tabs.tsx index 71ea4bf01e37..67af70e3d5da 100644 --- a/frontend/web/components/navigation/TabMenu/Tabs.tsx +++ b/frontend/web/components/navigation/TabMenu/Tabs.tsx @@ -181,28 +181,10 @@ const Tabs: React.FC = ({ const actualIndex = i + visibleCount const active = value === actualIndex return { - className: classNames('', [ - active - ? 'text-primary fw-semibold bg-primary-opacity-5 fill-primary' - : 'hover-color-primary', - ]), - label: ( -
- - {child.props.tabLabel} - -
- ) as React.ReactNode, + className: classNames( + active ? 'text-primary fw-semibold' : '', + ), + label: child.props.tabLabel, onClick: (e: any) => { handleChange( e,