/** * Sandbox Rejection Screen * * Shown in web mode when user denies the sandbox risk confirmation. * Prompts them to either restart the app in a container or reload to try again. */ import { ShieldX, RefreshCw } from 'lucide-react'; import { Button } from '@/components/ui/button'; export function SandboxRejectionScreen() { const handleReload = () => { // Clear the rejection state and reload sessionStorage.removeItem('automaker-sandbox-denied'); window.location.reload(); }; return (
You declined to accept the risks of running Automaker outside a sandbox environment.
For safer operation, consider running Automaker in Docker. See the README for instructions.