From c992be1694ce38cc6493adc95341ebff6ac5055a Mon Sep 17 00:00:00 2001 From: Guillim Date: Fri, 20 Dec 2024 18:15:02 +0100 Subject: [PATCH] Workspace logo is not visible (#9174) Fixing "Workspace logo is not visible in the navbar" report issue from @Weiko --- .../components/NavigationDrawer.tsx | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/packages/twenty-front/src/modules/ui/navigation/navigation-drawer/components/NavigationDrawer.tsx b/packages/twenty-front/src/modules/ui/navigation/navigation-drawer/components/NavigationDrawer.tsx index eed58ea01..75c645db2 100644 --- a/packages/twenty-front/src/modules/ui/navigation/navigation-drawer/components/NavigationDrawer.tsx +++ b/packages/twenty-front/src/modules/ui/navigation/navigation-drawer/components/NavigationDrawer.tsx @@ -111,15 +111,15 @@ export const NavigationDrawer = ({ onMouseEnter={handleHover} onMouseLeave={handleMouseLeave} > - {isSettingsDrawer && title - ? !isMobile && - : logo && ( - - )} + {isSettingsDrawer && title ? ( + !isMobile && + ) : ( + + )} {children}