From 2fc01f74e295e8edc1852e36a74f25d4dff8925e Mon Sep 17 00:00:00 2001 From: "santasri.pachhal" Date: Wed, 24 Jun 2026 00:55:59 +0530 Subject: [PATCH] refactor(ticket): remove redundant View action from ticket table --- src/app/(modules)/ticket/components/TicketTable.tsx | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/app/(modules)/ticket/components/TicketTable.tsx b/src/app/(modules)/ticket/components/TicketTable.tsx index 2c14568..c06e9c5 100644 --- a/src/app/(modules)/ticket/components/TicketTable.tsx +++ b/src/app/(modules)/ticket/components/TicketTable.tsx @@ -2,7 +2,6 @@ import type { ReactNode } from 'react'; import type { ColumnDef } from '@tanstack/react-table'; -import { Eye } from 'lucide-react'; import { DataTable } from '@/components/data-table'; import type { TicketListItem } from '@/types'; @@ -41,13 +40,6 @@ export function TicketTable({ toolbar={toolbar} emptyTitle="No tickets found." emptyDescription="Ticket rows will appear after video processing creates them." - actions={[ - { - label: 'View', - icon: , - onClick: onView, - }, - ]} pagination={{ skip, limit, @@ -56,7 +48,6 @@ export function TicketTable({ onLimitChange, }} onRowClick={onView} - actionsSticky /> ); }