summaryrefslogtreecommitdiff
path: root/lib/swp/table/swp-table.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'lib/swp/table/swp-table.tsx')
-rw-r--r--lib/swp/table/swp-table.tsx14
1 files changed, 1 insertions, 13 deletions
diff --git a/lib/swp/table/swp-table.tsx b/lib/swp/table/swp-table.tsx
index 7918c07e..21a1c775 100644
--- a/lib/swp/table/swp-table.tsx
+++ b/lib/swp/table/swp-table.tsx
@@ -14,8 +14,6 @@ import {
TableHeader,
TableRow,
} from "@/components/ui/table";
-import { Button } from "@/components/ui/button";
-import { ChevronRight } from "lucide-react";
import { swpDocumentColumns } from "./swp-table-columns";
import { SwpDocumentDetailDialog } from "./swp-document-detail-dialog";
import type { DocumentListItem } from "@/lib/swp/document-service";
@@ -80,17 +78,7 @@ export function SwpTable({
>
{row.getVisibleCells().map((cell) => (
<TableCell key={cell.id}>
- {cell.column.id === "expander" ? (
- <Button
- variant="ghost"
- size="sm"
- className="h-8 w-8 p-0"
- >
- <ChevronRight className="h-4 w-4" />
- </Button>
- ) : (
- flexRender(cell.column.columnDef.cell, cell.getContext())
- )}
+ {flexRender(cell.column.columnDef.cell, cell.getContext())}
</TableCell>
))}
</TableRow>