remove console log

This commit is contained in:
Wikzyy
2025-03-18 16:44:02 +07:00
parent 25cb7aae89
commit ae24123151
4 changed files with 5 additions and 5 deletions

View File

@ -111,7 +111,7 @@ const ManagePostoAdmsContextProvider = ({ children }: { children: React.ReactNod
accessorFn: (row) => row.municipios_name,
id: 'municipios_name',
header: ({ column }) => <DataGridColumnHeader title="Municipio Name" column={column} />,
enableSorting: true,
enableSorting: false,
enableHiding: false,
meta: {
headerClassName: 'w-[250px]'
@ -162,7 +162,7 @@ const ManagePostoAdmsContextProvider = ({ children }: { children: React.ReactNod
order_direction: sorting[0].desc ? 'DESC' : 'ASC',
filter: JSON.stringify(filter)
});
console.log(response?.data);
// console.log(response?.data);
// const sortedList = response.data.data.list.sort((a: PostoAdmsProps, b: PostoAdmsProps) => {
// if (a.name < b.name) return -1;
// if (a.name > b.name) return 1;