rename SANDBOX_EXEC_PROFILE as SEATBELT_PROFILE, and fix another accidental rephrasing (#285)

This commit is contained in:
Olcan 2025-05-07 21:31:30 -07:00 committed by GitHub
parent 13eadcea45
commit 327bd5f836
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View file

@ -49,10 +49,10 @@ export const Footer: React.FC<FooterProps> = ({
<Text color="green"> {process.env.SANDBOX} </Text>
) : process.env.SANDBOX === 'sandbox-exec' ? (
<Text color={Colors.AccentYellow}>
using macos seatbelt ({process.env.SANDBOX_EXEC_PROFILE})
using macos seatbelt ({process.env.SEATBELT_PROFILE})
</Text>
) : (
<Text color={Colors.AccentRed}> WARNING: SANDBOX NOT ENABLED </Text>
<Text color={Colors.AccentRed}> WARNING: OUTSIDE SANDBOX </Text>
)}
</Box>