@widergy/mobile-ui 1.44.0 → 1.44.1

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,10 @@
1
+ ## [1.44.1](https://github.com/widergy/mobile-ui/compare/v1.44.0...v1.44.1) (2025-05-07)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * contingency when calling event tracking ([#430](https://github.com/widergy/mobile-ui/issues/430)) ([3dbc98d](https://github.com/widergy/mobile-ui/commit/3dbc98d5087b4cdbd41843680496b75d83c6c9ee))
7
+
1
8
  # [1.44.0](https://github.com/widergy/mobile-ui/compare/v1.43.0...v1.44.0) (2025-05-05)
2
9
 
3
10
 
@@ -98,7 +98,7 @@ export const mixpanelEventsFlush = mixpanelInstance => () => {
98
98
 
99
99
  export const singleMixpanelEvent = mixpanelInstance => eventData => {
100
100
  const { name, ...yourProperties } = eventData;
101
- if (mixpanelInstance) mixpanelInstance.track(name, yourProperties);
101
+ if (mixpanelInstance && !isEmpty(name)) mixpanelInstance.track(name, yourProperties);
102
102
  };
103
103
 
104
104
  export const mixpanelSuperPropertiesRegister = mixpanelInstance => superProperties => {
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@widergy/mobile-ui",
3
3
  "description": "Widergy Mobile Components",
4
4
  "author": "widergy",
5
- "version": "1.44.0",
5
+ "version": "1.44.1",
6
6
  "repository": "https://github.com/widergy/mobile-ui.git",
7
7
  "main": "lib/index.js",
8
8
  "files": [