@mx-cartographer/experiences 6.24.16 → 6.24.17

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 CHANGED
@@ -1,3 +1,7 @@
1
+ ## [6.24.17] - 08-18-2025
2
+
3
+ - **FIXED** - Mini Goals track type null check fix
4
+
1
5
  ## [6.24.16] - 08-15-2025
2
6
 
3
7
  - **REMOVED** - Manually throwing honey badgers; they should be handled by the app consuming experiences
package/dist/index.es.js CHANGED
@@ -13537,7 +13537,7 @@ class Gp {
13537
13537
  }
13538
13538
  get ongoingGoalsForMicroWidget() {
13539
13539
  const n = this.goals.filter(
13540
- (a) => !a.is_complete && a.track_type !== Y.EMERGENCY_FUND_TRACK
13540
+ (a) => !a.is_complete && a.track_type !== Y.EMERGENCY_FUND_TRACK && a.track_type !== null
13541
13541
  ), i = [
13542
13542
  Y.SAVINGS_TRACK,
13543
13543
  Y.DEBT_TRACK,