diff options
Diffstat (limited to 'packages/cli/src/ui/components/Footer.tsx')
| -rw-r--r-- | packages/cli/src/ui/components/Footer.tsx | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/packages/cli/src/ui/components/Footer.tsx b/packages/cli/src/ui/components/Footer.tsx index 61632bcb..46d669b7 100644 --- a/packages/cli/src/ui/components/Footer.tsx +++ b/packages/cli/src/ui/components/Footer.tsx @@ -64,10 +64,15 @@ export const Footer: React.FC<FooterProps> = ({ </Text> ) : process.env.SANDBOX === 'sandbox-exec' ? ( <Text color={Colors.AccentYellow}> - sandbox-exec ({process.env.SEATBELT_PROFILE}) + sandbox-exec{' '} + <Text color={Colors.SubtleComment}> + ({process.env.SEATBELT_PROFILE}) + </Text> </Text> ) : ( - <Text color={Colors.AccentRed}>no sandbox (see README)</Text> + <Text color={Colors.AccentRed}> + no sandbox <Text color={Colors.SubtleComment}>(see README)</Text> + </Text> )} </Box> |
