Skip to content

Commit 6a2dd44

Browse files
committed
fix: remove unused parameter from dataset type cell renderer
1 parent a2d78da commit 6a2dd44

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/modules/datasets/datasetsTable/columns.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export const columns: ColumnDef<Dataset>[] = [
4444
{
4545
accessorKey: 'datasetName',
4646
header: 'Type',
47-
cell: ({ row }) => {
47+
cell: () => {
4848
// const datasetType = row.original.type;
4949
const datasetType = [
5050
{ name: 'Email', type: 'string' },

0 commit comments

Comments
 (0)