diff --git a/src/widgets/copilot/components/Header/index.tsx b/src/widgets/copilot/components/Header/index.tsx index 5d0b639..74342c8 100644 --- a/src/widgets/copilot/components/Header/index.tsx +++ b/src/widgets/copilot/components/Header/index.tsx @@ -44,7 +44,12 @@ const Header = () => { >
{

{branding?.name}

-
- {/* Focus mode button */} - {layoutController?.showFocusModeButton && ( - - - {layoutController.isFocusMode ? ( - - ) : ( - - )} - - - )} - {/* Close / minimize button */} -
- {layoutController?.showCloseButton && ( - - + {/* Focus mode button */} + {layoutController?.showFocusModeButton && ( + - - - - )} + + {layoutController.isFocusMode ? ( + + ) : ( + + )} + + + )} + {/* Close / minimize button */} + {layoutController?.showCloseButton && ( + + + + + + )} +
);