[autofix.ci] apply automated fixes

This commit is contained in:
autofix-ci[bot]
2026-03-24 18:57:02 +00:00
committed by GitHub
parent b1ef5dc2c6
commit b7e30d7ec3
2 changed files with 6 additions and 3 deletions
@@ -38,8 +38,8 @@ export const RemoveContainerDialog = ({ containerId, serverId }: Props) => {
<AlertDialogDescription>
This will permanently remove the container{" "}
<span className="font-semibold">{containerId}</span>. If the
container is running, it will be forcefully stopped and removed. This
action cannot be undone.
container is running, it will be forcefully stopped and removed.
This action cannot be undone.
</AlertDialogDescription>
</AlertDialogHeader>
<AlertDialogFooter>
@@ -128,7 +128,10 @@ export const columns: ColumnDef<Container>[] = [
>
Terminal
</DockerTerminalModal>
<RemoveContainerDialog containerId={container.containerId} serverId={container.serverId} />
<RemoveContainerDialog
containerId={container.containerId}
serverId={container.serverId}
/>
</DropdownMenuContent>
</DropdownMenu>
);