diff --git a/code/ui/components/src/components/tabs/tabs.helpers.tsx b/code/ui/components/src/components/tabs/tabs.helpers.tsx index 024765fd5cf3..fe41cc47be91 100644 --- a/code/ui/components/src/components/tabs/tabs.helpers.tsx +++ b/code/ui/components/src/components/tabs/tabs.helpers.tsx @@ -29,8 +29,8 @@ export const childrenToList = (children: TabsProps['children']) => const render: FC = ( typeof content === 'function' ? content - : ({ active, key }: any) => ( - + : ({ active }) => ( + {content} )