@layerfi/components 0.1.41 → 0.1.42

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -9460,9 +9460,9 @@ var ProfitAndLossChart = ({
9460
9460
  name: getMonthName(pnl),
9461
9461
  revenue: pnl?.income || 0,
9462
9462
  revenueUncategorized: pnl?.uncategorizedInflows || 0,
9463
- expenses: -(pnl?.totalExpenses || 0),
9463
+ expenses: -(pnl?.operatingExpenses || 0),
9464
9464
  expensesUncategorized: -(pnl?.uncategorizedOutflows || 0),
9465
- operatingExpensesInverse: pnl?.totalExpenses || 0,
9465
+ operatingExpensesInverse: pnl?.operatingExpensesInverse || 0,
9466
9466
  uncategorizedOutflowsInverse: pnl?.uncategorizedOutflowsInverse || 0,
9467
9467
  netProfit: pnl?.netProfit || 0,
9468
9468
  selected: !!pnl && pnl.month === selectionMonth.month + 1 && pnl.year === selectionMonth.year,