From 93bc5b28582a2c1c6a6b3925c47bc4510547a565 Mon Sep 17 00:00:00 2001 From: Bohdan Triapitsyn Date: Sun, 14 Jun 2026 01:45:29 +0300 Subject: [PATCH] Move changes toggle before mini chat --- packages/ui/src/components/layout/Header.tsx | 46 ++++++++++---------- 1 file changed, 24 insertions(+), 22 deletions(-) diff --git a/packages/ui/src/components/layout/Header.tsx b/packages/ui/src/components/layout/Header.tsx index 58a7d3ab..41b55f98 100644 --- a/packages/ui/src/components/layout/Header.tsx +++ b/packages/ui/src/components/layout/Header.tsx @@ -2015,30 +2015,31 @@ export const Header: React.FC = ({ return {tabButton}; }; + const desktopChangesPanelAction = !isVSCode ? ( + + + + + +

{t('header.actions.toggleChangesPanel')}

+
+
+ ) : null; + const desktopSidebarActions = ( <> - {!isVSCode ? ( - - - - - -

{t('header.actions.toggleChangesPanel')}

-
-
- ) : null} {showPlanTab && ( @@ -2224,6 +2225,7 @@ export const Header: React.FC = ({ percentIconClassName="h-5 w-5" /> ) : null} + {desktopChangesPanelAction}