You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: harden web tracking and skip native polling on web
Prevent unhandled rejections from fire-and-forget web sends, only run
batch flush polling for the native dispatcher, and document appVersion
for React Native Web in the README.
Co-authored-by: Cursor <cursoragent@cursor.com>
appVersion:"1.0.0", // required on web — no native module provides it
34
+
});
32
35
```
33
36
34
37
When enabled, the SDK will track events in web environments using the same behavior as the web SDKs. Which means that events will be sent immediately to the `/event` endpoint instead of grouped to the `/events` endpoint.
@@ -78,7 +81,7 @@ export function Counter() {
78
81
}
79
82
```
80
83
81
-
To disable tracking events, you can call the `dispose` function. This will stop and deinitalize the SDK.
84
+
To disable tracking events, you can call the `dispose` function. This will stop and deinitialize the SDK.
0 commit comments