remove priority trensfer fee

This commit is contained in:
bagusajisaputroo
2025-05-19 00:17:40 +07:00
parent ffcb49d46d
commit 219e606c30
3 changed files with 2 additions and 62 deletions

View File

@ -248,30 +248,7 @@ const ManageTransferFeeContextProvider = ({
enableHiding: false,
meta: { headerClassName: 'w-[250px]' }
},
{
accessorFn: (row) => row.priority,
id: 'priority',
header: ({ column }) => <DataGridColumnHeader title="Priority" column={column} />,
enableSorting: true,
enableHiding: false,
cell: ({ row }) => {
const isActive = row.original.priority === 'Y';
return (
<span
className={`px-2 py-1 text-xs font-semibold rounded-full ${
isActive ? 'bg-green-100 text-green-600' : 'bg-red-100 text-red-600'
}`}
>
{isActive ? 'Yes' : 'No'}
</span>
);
},
meta: {
headerClassName: 'w-[100px]',
cellClassName: 'text-center'
}
},
{
accessorFn: (row) => row.status,
id: 'status',