@mx-cartographer/experiences 6.24.23 → 6.24.24
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/CHANGELOG.md +4 -0
- package/dist/index.es.js +3 -3
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/index.es.js
CHANGED
|
@@ -13182,7 +13182,7 @@ const zp = ({ list: e, onClickItem: n }) => /* @__PURE__ */ t(O, { sx: { bgcolor
|
|
|
13182
13182
|
stateTitle: u
|
|
13183
13183
|
};
|
|
13184
13184
|
}, { spendToIncomeRatio: r, spendFeeCount: s } = g.useMemo(() => {
|
|
13185
|
-
const c = Math.round(e.spend_to_income_ratio * 100), d = a(c), _ = o(e.spending_fee_transaction_count);
|
|
13185
|
+
const c = e.spend_to_income_ratio !== null ? Math.round(e.spend_to_income_ratio * 100) : null, d = a(c), _ = o(e.spending_fee_transaction_count);
|
|
13186
13186
|
return { spendToIncomeRatio: d, spendFeeCount: _ };
|
|
13187
13187
|
}, [
|
|
13188
13188
|
e.spend_to_income_ratio,
|
|
@@ -13233,7 +13233,7 @@ const zp = ({ list: e, onClickItem: n }) => /* @__PURE__ */ t(O, { sx: { bgcolor
|
|
|
13233
13233
|
stateTitle: m
|
|
13234
13234
|
};
|
|
13235
13235
|
}, { daysOfCashOnHand: r, emergencySavings: s } = g.useMemo(() => {
|
|
13236
|
-
const c = Math.round(e.months_of_cash_on_hand * 30), d = a(c), _ = Math.round(e.emergency_savings_on_hand), u = o(_);
|
|
13236
|
+
const c = e.months_of_cash_on_hand !== null ? Math.round(e.months_of_cash_on_hand * 30) : null, d = a(c), _ = e.emergency_savings_on_hand !== null ? Math.round(e.emergency_savings_on_hand) : null, u = o(_);
|
|
13237
13237
|
return { daysOfCashOnHand: d, emergencySavings: u };
|
|
13238
13238
|
}, [
|
|
13239
13239
|
e.months_of_cash_on_hand,
|
|
@@ -13287,7 +13287,7 @@ const zp = ({ list: e, onClickItem: n }) => /* @__PURE__ */ t(O, { sx: { bgcolor
|
|
|
13287
13287
|
stateTitle: p
|
|
13288
13288
|
};
|
|
13289
13289
|
}, { manageDebtStatus: s, creditScoreStatus: c } = g.useMemo(() => {
|
|
13290
|
-
const d = Math.round(e.debt_to_income_ratio * 100), _ = o(d), u = r(a.credit_score || null);
|
|
13290
|
+
const d = e.debt_to_income_ratio !== null ? Math.round(e.debt_to_income_ratio * 100) : null, _ = o(d), u = r(a.credit_score || null);
|
|
13291
13291
|
return {
|
|
13292
13292
|
manageDebtStatus: _,
|
|
13293
13293
|
creditScoreStatus: u
|