diff --git a/packages/twenty-front/src/modules/ui/layout/page-header/components/PageHeaderToggleCommandMenuButton.tsx b/packages/twenty-front/src/modules/ui/layout/page-header/components/PageHeaderToggleCommandMenuButton.tsx index 6804f6b88..59da40d5b 100644 --- a/packages/twenty-front/src/modules/ui/layout/page-header/components/PageHeaderToggleCommandMenuButton.tsx +++ b/packages/twenty-front/src/modules/ui/layout/page-header/components/PageHeaderToggleCommandMenuButton.tsx @@ -118,31 +118,30 @@ export const PageHeaderToggleCommandMenuButton = () => { const theme = useTheme(); return ( -
- -
- - } - className="page-header-command-menu-button" - dataTestId="page-header-command-menu-button" - size={isMobile ? 'medium' : 'small'} - variant="secondary" - accent="default" - hotkeys={[getOsControlSymbol(), 'K']} - ariaLabel={ariaLabel} - onClick={toggleCommandMenu} - animate={{ - rotate: isCommandMenuOpened ? 90 : 0, - }} - transition={{ - duration: theme.animation.duration.normal, - ease: 'easeInOut', - }} - /> -
-
+ +
+ + } + className="page-header-command-menu-button" + dataTestId="page-header-command-menu-button" + size={isMobile ? 'medium' : 'small'} + variant="secondary" + accent="default" + hotkeys={[getOsControlSymbol(), 'K']} + ariaLabel={ariaLabel} + onClick={toggleCommandMenu} + animate={{ + rotate: isCommandMenuOpened ? 90 : 0, + }} + transition={{ + duration: theme.animation.duration.normal, + ease: 'easeInOut', + }} + /> +
+ { noArrow /> -
+ ); };