Skip to content
Snippets Groups Projects

Delrifai/#394 2 add charts to balance history

Merged Dima Rifai requested to merge delrifai/#394_2_add_charts_to_balance_history into develop
@@ -162,7 +162,7 @@ export default function BalanceHistory() {
// Use useMemo to memoize the prepared data so it only recalculates when chartData changes
const preparedData = useMemo(() => {
return chartData ? prepareData(chartData.operations_result.slice().reverse()) : [];
return chartData ? prepareData(chartData.operations_result?.slice().reverse()) : [];
}, [chartData]); // This will only recompute when chartData changes
let message = "";
Loading