MCPcopy Index your code
hub / github.com/codeaashu/claude-code / buildSandboxProperties

Function buildSandboxProperties

src/utils/status.tsx:28–37  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

26};
27export type Diagnostic = React.ReactNode;
28export function buildSandboxProperties(): Property[] {
29 if ("external" !== 'ant') {
30 return [];
31 }
32 const isSandboxed = SandboxManager.isSandboxingEnabled();
33 return [{
34 label: 'Bash Sandbox',
35 value: isSandboxed ? 'Enabled' : 'Disabled'
36 }];
37}
38export function buildIDEProperties(mcpClients: MCPServerConnection[], ideInstallationStatus: IDEExtensionInstallationStatus | null = null, theme: ThemeName): Property[] {
39 const ideClient = mcpClients?.find(client => client.name === 'ide');
40 if (ideInstallationStatus) {

Callers 1

buildSecondarySectionFunction · 0.85

Calls 1

isSandboxingEnabledMethod · 0.80

Tested by

no test coverage detected