diff options
| author | Miguel Solorio <[email protected]> | 2025-05-23 14:54:54 -0700 |
|---|---|---|
| committer | N. Taylor Mullen <[email protected]> | 2025-05-23 16:14:37 -0700 |
| commit | 30080b9f4e0341a1b69f3ea4c2a7cffd88d77c8c (patch) | |
| tree | 3bc0e0c0608e03b4343e3b0c9dcd87ebadca2c5f | |
| parent | 2a2d041dcd1c097db8d686bb29ab85ad5155c6cd (diff) | |
🧹 Format
| -rw-r--r-- | packages/cli/src/ui/components/AboutBox.tsx | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/packages/cli/src/ui/components/AboutBox.tsx b/packages/cli/src/ui/components/AboutBox.tsx index a1a3a562..9ffa1a90 100644 --- a/packages/cli/src/ui/components/AboutBox.tsx +++ b/packages/cli/src/ui/components/AboutBox.tsx @@ -36,7 +36,9 @@ export const AboutBox: React.FC<AboutBoxProps> = ({ </Box> <Box flexDirection="row"> <Box width="35%"> - <Text bold color={Colors.LightBlue}>CLI Version</Text> + <Text bold color={Colors.LightBlue}> + CLI Version + </Text> </Box> <Box> <Text>{cliVersion}</Text> @@ -44,7 +46,9 @@ export const AboutBox: React.FC<AboutBoxProps> = ({ </Box> <Box flexDirection="row"> <Box width="35%"> - <Text bold color={Colors.LightBlue}>Model</Text> + <Text bold color={Colors.LightBlue}> + Model + </Text> </Box> <Box> <Text>{modelVersion}</Text> @@ -52,7 +56,9 @@ export const AboutBox: React.FC<AboutBoxProps> = ({ </Box> <Box flexDirection="row"> <Box width="35%"> - <Text bold color={Colors.LightBlue}>Sandbox</Text> + <Text bold color={Colors.LightBlue}> + Sandbox + </Text> </Box> <Box> <Text>{sandboxEnv}</Text> @@ -60,7 +66,9 @@ export const AboutBox: React.FC<AboutBoxProps> = ({ </Box> <Box flexDirection="row"> <Box width="35%"> - <Text bold color={Colors.LightBlue}>OS</Text> + <Text bold color={Colors.LightBlue}> + OS + </Text> </Box> <Box> <Text>{osVersion}</Text> |
