mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-01-31 20:03:37 +00:00
- Introduced a new endpoint to check if the application is running in a containerized environment, allowing the UI to display appropriate risk warnings. - Added a confirmation dialog for users when running outside a sandbox, requiring acknowledgment of potential risks before proceeding. - Implemented a rejection screen for users who deny sandbox risk confirmation, providing options to restart in a container or reload the application. - Updated the main application logic to handle sandbox status checks and user responses effectively, enhancing security and user experience.
9 lines
524 B
TypeScript
9 lines
524 B
TypeScript
export { BoardBackgroundModal } from './board-background-modal';
|
|
export { DeleteAllArchivedSessionsDialog } from './delete-all-archived-sessions-dialog';
|
|
export { DeleteSessionDialog } from './delete-session-dialog';
|
|
export { FileBrowserDialog } from './file-browser-dialog';
|
|
export { NewProjectModal } from './new-project-modal';
|
|
export { SandboxRejectionScreen } from './sandbox-rejection-screen';
|
|
export { SandboxRiskDialog } from './sandbox-risk-dialog';
|
|
export { WorkspacePickerModal } from './workspace-picker-modal';
|