@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/esm/index.js +2 -2
- package/dist/esm/index.js.map +2 -2
- package/dist/index.js +2 -2
- package/dist/index.js.map +2 -2
- package/package.json +1 -1
package/dist/esm/index.js
CHANGED
|
@@ -9466,9 +9466,9 @@ var ProfitAndLossChart = ({
|
|
|
9466
9466
|
name: getMonthName(pnl),
|
|
9467
9467
|
revenue: pnl?.income || 0,
|
|
9468
9468
|
revenueUncategorized: pnl?.uncategorizedInflows || 0,
|
|
9469
|
-
expenses: -(pnl?.
|
|
9469
|
+
expenses: -(pnl?.operatingExpenses || 0),
|
|
9470
9470
|
expensesUncategorized: -(pnl?.uncategorizedOutflows || 0),
|
|
9471
|
-
operatingExpensesInverse: pnl?.
|
|
9471
|
+
operatingExpensesInverse: pnl?.operatingExpensesInverse || 0,
|
|
9472
9472
|
uncategorizedOutflowsInverse: pnl?.uncategorizedOutflowsInverse || 0,
|
|
9473
9473
|
netProfit: pnl?.netProfit || 0,
|
|
9474
9474
|
selected: !!pnl && pnl.month === selectionMonth.month + 1 && pnl.year === selectionMonth.year,
|