chore: remove review table actions

This commit is contained in:
Mahen 2026-02-20 20:25:16 +07:00
parent 9a7a764e74
commit 97e7e1720f
2 changed files with 4 additions and 5 deletions

View File

@ -58,7 +58,6 @@ export function ReviewTable() {
<TableHead className="w-30 whitespace-nowrap">Tanggal</TableHead>
<TableHead className="w-30">Sentimen</TableHead>
<TableHead className="w-50">Confidence Score</TableHead>
<TableHead className="w-25">Actions</TableHead>
</TableRow>
</TableHeader>
<TableBody>
@ -146,7 +145,7 @@ export function ReviewTable() {
: "-"}
</span>
</TableCell>
<TableCell className="align-top ">
{/* <TableCell className="align-top ">
<DropdownMenu>
<DropdownMenuTrigger asChild className="cursor-pointer">
<EllipsisVertical className="w-4 h-4" />
@ -165,7 +164,7 @@ export function ReviewTable() {
</DropdownMenuItem>
</DropdownMenuContent>
</DropdownMenu>
</TableCell>
</TableCell> */}
</TableRow>
))
)}

View File

@ -32,11 +32,11 @@ export const useHeader = () => {
return {
open,
setOpen,
session,
isRefreshing,
handleRefresh,
mounted,
productCount,
handleRefresh,
setOpen,
};
};