From 7c51acd080a2370b1f4ac342f721cb12fcb16bd2 Mon Sep 17 00:00:00 2001 From: Bree Hall Date: Wed, 25 May 2022 16:02:08 -0400 Subject: [PATCH] Resolved type error within EuiTabs by removing instances of display: condensed as it is no longer a part of the Amsterdam theme via EUI PR #5868(https://github.com/elastic/eui/pull/5868) --- .../common/components/navigation/tab_navigation/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/plugins/security_solution/public/common/components/navigation/tab_navigation/index.tsx b/x-pack/plugins/security_solution/public/common/components/navigation/tab_navigation/index.tsx index 03437bab93f38a..57dac61d43ef98 100644 --- a/x-pack/plugins/security_solution/public/common/components/navigation/tab_navigation/index.tsx +++ b/x-pack/plugins/security_solution/public/common/components/navigation/tab_navigation/index.tsx @@ -102,7 +102,7 @@ export const TabNavigationComponent: React.FC = ({ [navTabs, selectedTabId, search] ); - return {renderTabs}; + return {renderTabs}; }; TabNavigationComponent.displayName = 'TabNavigationComponent';