@mx-cartographer/experiences 6.26.24 → 6.26.25

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.26.25] - 09-10-2025
2
+
3
+ - **FIXED** - `Settings Widget` | Notification's Delivery Method Status fixed with correct status.
4
+
1
5
  ## [6.26.24] - 09-10-2025
2
6
 
3
7
  - **FIXED** - Help Tool Header Misalignment.
package/dist/index.es.js CHANGED
@@ -18350,7 +18350,7 @@ const oC = ({
18350
18350
  !o.opted_out_of_email_notifications
18351
18351
  ),
18352
18352
  primaryText: n.delivery_method_email_title,
18353
- secondaryText: o.opted_out_of_email_notifications ? n.notification_disabled : n.notification_enabled,
18353
+ secondaryText: r.email && !o.opted_out_of_email_notifications ? n.notification_enabled : n.notification_disabled,
18354
18354
  useExtraPadding: !1
18355
18355
  }
18356
18356
  ),
@@ -18364,7 +18364,7 @@ const oC = ({
18364
18364
  isDisabled: !r.phone,
18365
18365
  onToggle: () => s("opted_out_of_sms_notifications", !o.opted_out_of_sms_notifications),
18366
18366
  primaryText: n.delivery_method_sms_title,
18367
- secondaryText: o.opted_out_of_sms_notifications ? n.notification_disabled : n.notification_enabled,
18367
+ secondaryText: r.phone && !o.opted_out_of_sms_notifications ? n.notification_enabled : n.notification_disabled,
18368
18368
  useExtraPadding: !1
18369
18369
  }
18370
18370
  ),