From e692b7d2f9bd08cdd9b1fefe63af26445a5e9041 Mon Sep 17 00:00:00 2001 From: Boba Date: Wed, 25 Mar 2026 15:49:33 -0500 Subject: [PATCH] fix: tab navigation deprecation --- packages/web/src/tabs/TabNavigation.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/packages/web/src/tabs/TabNavigation.tsx b/packages/web/src/tabs/TabNavigation.tsx index 045e154d1..625232c22 100644 --- a/packages/web/src/tabs/TabNavigation.tsx +++ b/packages/web/src/tabs/TabNavigation.tsx @@ -157,12 +157,6 @@ type TabNavigationFC = ( props: TabNavigationProps & { ref?: ForwardedRef }, ) => React.ReactElement; -/** - * TabNavigation renders a horizontal, tab-based navigation bar. - * This component has a opinionated default style, but allows for customization through custom Component props. - * @deprecated Use Tabs instead. This will be removed in a future major release. - * @deprecationExpectedRemoval v8 - */ const TabNavigationComponent = memo( forwardRef( ( @@ -461,4 +455,10 @@ const TabNavigationComponent = memo( TabNavigationComponent.displayName = 'TabNavigation'; +/** + * TabNavigation renders a horizontal, tab-based navigation bar. + * This component has a opinionated default style, but allows for customization through custom Component props. + * @deprecated Use Tabs instead. This will be removed in a future major release. + * @deprecationExpectedRemoval v8 + */ export const TabNavigation = TabNavigationComponent as TabNavigationFC;