diff --git a/.gitignore b/.gitignore index 6bda4db..37e2b2c 100644 --- a/.gitignore +++ b/.gitignore @@ -27,6 +27,7 @@ frontend/public/pdf.worker.min.mjs *.sw? target +ratarget # Gemini CLI Desktop test artifacts .gemini-cli-desktop/ diff --git a/frontend/src/components/layout/AppHeader.tsx b/frontend/src/components/layout/AppHeader.tsx index 2025d4d..b7d5360 100644 --- a/frontend/src/components/layout/AppHeader.tsx +++ b/frontend/src/components/layout/AppHeader.tsx @@ -33,9 +33,9 @@ export const AppHeader: React.FC = ({ return (
-
+
{/* Left section - Sidebar trigger + Desktop Logo */} -
+
= ({ )}
- - {/* Center section - Empty spacer */} -
- {/* Right section - Settings + Directory Toggle + Piebald branding */} -
+
{onOpenSettings && ( + + + + + {t("dashboard.rawJsonTitle")} + + +
+ +
+
+
<> @@ -99,7 +126,7 @@ export const HomeDashboard: React.FC = () => { return message.parts.map((msgPart, partIndex) => (
@@ -130,7 +157,7 @@ ${part.thinking}`; {msgPart.type === "thinking" ? ( ) : msgPart.type === "text" ? ( -
+
) : msgPart.type === "toolCall" ? ( @@ -173,36 +200,6 @@ ${part.thinking}`; )); })()} - - {/* Info button for raw JSON */} -
- - - - - - - - {t("dashboard.rawJsonTitle")} - - -
- -
-
-
-
))}