refactor(FE-212): remove unused poDate and supplier fields from table filter in PurchaseTable

This commit is contained in:
rstubryan
2025-11-20 13:34:52 +07:00
parent 4e8b17f55c
commit 343cc7c4e7
@@ -94,14 +94,10 @@ const PurchaseTable = () => {
} = useTableFilter({ } = useTableFilter({
initial: { initial: {
search: '', search: '',
poDate: '',
supplier: '',
}, },
paramMap: { paramMap: {
page: 'page', page: 'page',
pageSize: 'limit', pageSize: 'limit',
poDate: 'po_date',
supplier: 'supplier',
}, },
}); });