From 319f211211432409abba06caf55e40ef200eab85 Mon Sep 17 00:00:00 2001 From: Olcan Date: Mon, 21 Apr 2025 14:43:43 -0700 Subject: improved (full color) sandbox, mount /tmp to display build warnings, display sandbox name in footer (#96) --- packages/cli/src/ui/components/Footer.tsx | 30 +++++++++++++++++++++++++++--- 1 file changed, 27 insertions(+), 3 deletions(-) (limited to 'packages/cli/src/ui/components') diff --git a/packages/cli/src/ui/components/Footer.tsx b/packages/cli/src/ui/components/Footer.tsx index 35ed6910..6b8a0fec 100644 --- a/packages/cli/src/ui/components/Footer.tsx +++ b/packages/cli/src/ui/components/Footer.tsx @@ -19,8 +19,14 @@ export const Footer: React.FC = ({ debugMode, debugMessage, }) => ( - - + + {/* Left Section: Help/DebugMode */} + {queryLength === 0 ? '? for shortcuts' : ''} {debugMode && ( @@ -28,6 +34,24 @@ export const Footer: React.FC = ({ )} - Gemini + + {/* Middle Section: Centered Sandbox Info */} + + {process.env.SANDBOX ? ( + {process.env.SANDBOX} + ) : ( + WARNING: OUTSIDE SANDBOX + )} + + + {/* Right Section: Gemini Label */} + + Gemini + ); -- cgit v1.2.3