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;