fixing feedback member

This commit is contained in:
bagusajisaputroo
2025-04-25 10:42:34 +07:00
parent 3d584b56db
commit 97996a99dc
2 changed files with 2 additions and 2 deletions

View File

@ -97,7 +97,7 @@ const EditDialog = () => {
}
const data = response.data;
console.log('Fetched data:', data);
// console.log('Fetched data:', data);
setReviewNotes(data.review_notes || '');

View File

@ -92,7 +92,7 @@ const ManageFeedbackMemberProvider = ({ children }: { children: React.ReactNode
const columns = useMemo<ColumnDef<any>[]>(
() => [
{
accessorFn: (row) => row.customerid,
accessorFn: (row) => row.fullname,
id: 'customer_id',
header: ({ column }) => <DataGridColumnHeader title="Customer Name" column={column} />,
enableSorting: false,