From 6cf18ea4e8ec5588149e2a2ebc22d048ab15faa2 Mon Sep 17 00:00:00 2001 From: Enrico Ros Date: Tue, 19 Mar 2024 22:46:54 -0700 Subject: [PATCH] fix tooltip missing on nav --- src/common/layout/optima/DesktopNav.tsx | 28 ++++++++++++------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/src/common/layout/optima/DesktopNav.tsx b/src/common/layout/optima/DesktopNav.tsx index 967fd1373..5d94565cc 100644 --- a/src/common/layout/optima/DesktopNav.tsx +++ b/src/common/layout/optima/DesktopNav.tsx @@ -90,23 +90,23 @@ export function DesktopNav(props: { component: React.ElementType, currentApp?: N // Overflow dropdown menu if (overflowApps.length) { components.push( - - + + - - {overflowApps.map((app, appIdx) => - Router.push(app.landingRoute || app.route)} sx={{ minHeight: '2.5rem' }}> - - - - {app.name + (app.isDev ? ' [DEV]' : '')} - , - )} - - - , + + + {overflowApps.map((app, appIdx) => + Router.push(app.landingRoute || app.route)} sx={{ minHeight: '2.5rem' }}> + + + + {app.name + (app.isDev ? ' [DEV]' : '')} + , + )} + + , ); } return components;