Replies: 2 comments
-
|
Just sharing my discovery |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
My first pass solution... tho, it would be better to ignore all requests except the your own API calls... LogRocket.init('<slug>', {
...
network: {
requestSanitizer: (request) => {
if (/oauth2\.googleapis\.com/i.test(request.url)) {
return null;
}
return request;
}
}) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
In my case, disabling LogRocket fixed the iOS hang/cancel issue... need to further dig into why.
Beta Was this translation helpful? Give feedback.
All reactions