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

View File

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