refactor(FE): Fix dependency array in useMemo for SalesClosingTable

This commit is contained in:
rstubryan
2026-03-05 15:33:50 +07:00
parent 75f765ee69
commit 333dd01f92
@@ -308,7 +308,16 @@ const SalesClosingTable = ({ projectFlockId }: SalesClosingTableProps) => {
// },
// },
],
[]
[
summary,
totals.avgActualPrice,
totals.avgSalesPrice,
totals.avgWeight,
totals.totalActualPrice,
totals.totalQuantity,
totals.totalSalesPrice,
totals.totalWeight,
]
);
return (