summaryrefslogtreecommitdiff
path: root/lib/items-tech/table/ship/items-table-toolbar-actions.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'lib/items-tech/table/ship/items-table-toolbar-actions.tsx')
-rw-r--r--lib/items-tech/table/ship/items-table-toolbar-actions.tsx4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/items-tech/table/ship/items-table-toolbar-actions.tsx b/lib/items-tech/table/ship/items-table-toolbar-actions.tsx
index 677173d1..e58ba135 100644
--- a/lib/items-tech/table/ship/items-table-toolbar-actions.tsx
+++ b/lib/items-tech/table/ship/items-table-toolbar-actions.tsx
@@ -134,9 +134,7 @@ export function ItemsTableToolbarActions({ table }: ItemsTableToolbarActionsProp
{/* 선택된 로우가 있으면 삭제 다이얼로그 */}
{table.getFilteredSelectedRowModel().rows.length > 0 ? (
<DeleteItemsDialog
- items={table
- .getFilteredSelectedRowModel()
- .rows.map((row) => row.original)}
+ items={table.getFilteredSelectedRowModel().rows.map((row) => row.original) as any}
onSuccess={() => table.toggleAllRowsSelected(false)}
itemType="shipbuilding"
/>