import Header from "@/src/components/layouts/header"; import { Alert, AlertDescription, AlertTitle } from "@/src/components/ui/alert"; import { SettingsTableCard } from "@/src/components/layouts/settings-table-card"; import { useHasProjectAccess } from "@/src/features/rbac/utils/checkProjectAccess"; import { BatchActionsTable } from "./BatchActionsTable"; export function BatchActionsSettingsPage(props: { projectId: string }) { const hasAccess = useHasProjectAccess({ projectId: props.projectId, scope: "datasets:CUD", }); return ( <>

Track the status of bulk operations performed on tables, such as adding observations to datasets, deleting traces, and adding items to annotation queues. Actions are processed asynchronously in the background.

{hasAccess ? ( ) : ( Access Denied You do not have permission to view batch actions. )} ); }