diff --git a/packages/ui/src/foundations/enterprise-module/components/bulk-action-confirmation/index.tsx b/packages/ui/src/foundations/enterprise-module/components/bulk-action-confirmation/index.tsx index 218ea71..33aba85 100644 --- a/packages/ui/src/foundations/enterprise-module/components/bulk-action-confirmation/index.tsx +++ b/packages/ui/src/foundations/enterprise-module/components/bulk-action-confirmation/index.tsx @@ -83,81 +83,6 @@ const ModalFormBody = React.memo(function ModalFormBody< form?: ReturnType>; }) => React.ReactElement; -// --------------------------------------------------------------------------- -// Summary Panel (shown after processing completes) -// --------------------------------------------------------------------------- - -// const SummaryPanel = React.memo(function SummaryPanel({ -// result, -// t, -// }: { -// result: AggregatedResult; -// t: (key: string) => string; -// }) { -// return ( -// -// -// {/* Stats row */} -// -// -// -// -// -// -// {t('common:bulkAction.totalItems')}: -// -// -// {result.totalItems} -// -// - -// -// -// -// -// -// {t('common:bulkAction.totalSuccess')}: -// -// -// {result.totalSuccess} -// -// - -// -// -// -// -// -// {t('common:bulkAction.totalFailed')}: -// -// -// {result.totalFailed} -// -// -// - -// {/* Messages list */} -// {result.messages.length > 0 && ( -// <> -// -// {t('common:bulkAction.messages')}: -// -// -// {result.messages.map((msg, idx) => ( -// -// -// {msg} -// -// -// ))} -// -// -// )} -// -// -// ); -// }); - // --------------------------------------------------------------------------- // BulkActionConfirmationModal // ---------------------------------------------------------------------------