From 8a0a2523ca50eabe1e0701ac049e2e5c7f61791a Mon Sep 17 00:00:00 2001 From: Miguel Solorio Date: Thu, 5 Jun 2025 14:35:47 -0700 Subject: Allow themes to theme the UI (#769) --- packages/cli/src/ui/components/Footer.tsx | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) (limited to 'packages/cli/src/ui/components/Footer.tsx') diff --git a/packages/cli/src/ui/components/Footer.tsx b/packages/cli/src/ui/components/Footer.tsx index 46d669b7..ea83a031 100644 --- a/packages/cli/src/ui/components/Footer.tsx +++ b/packages/cli/src/ui/components/Footer.tsx @@ -40,9 +40,7 @@ export const Footer: React.FC = ({ {shortenPath(tildeifyPath(targetDir), 70)} - {branchName && ( - ({branchName}*) - )} + {branchName && ({branchName}*)} {debugMode && ( @@ -65,13 +63,11 @@ export const Footer: React.FC = ({ ) : process.env.SANDBOX === 'sandbox-exec' ? ( sandbox-exec{' '} - - ({process.env.SEATBELT_PROFILE}) - + ({process.env.SEATBELT_PROFILE}) ) : ( - no sandbox (see README) + no sandbox (see README) )} @@ -81,7 +77,7 @@ export const Footer: React.FC = ({ {model} {corgiMode && ( - | + | @@ -91,7 +87,7 @@ export const Footer: React.FC = ({ )} {!showErrorDetails && errorCount > 0 && ( - | + | )} -- cgit v1.2.3