diff --git a/app/(dashboard)/cars/makes/[make]/columns.tsx b/app/(dashboard)/cars/makes/[make]/columns.tsx index 4d6b91d..859646c 100644 --- a/app/(dashboard)/cars/makes/[make]/columns.tsx +++ b/app/(dashboard)/cars/makes/[make]/columns.tsx @@ -27,9 +27,7 @@ export const columns: ColumnDef[] = [ cell: ({ row }) => { const type = row.getValue("fuel_type") as string; return ( - - {type} - + {type} ); }, }, @@ -39,9 +37,7 @@ export const columns: ColumnDef[] = [ cell: ({ row }) => { const type = row.getValue("vehicle_type") as string; return ( - + {type} );