I’m using @sentry/react 6.2.5 with the most simple configurations.
Sentry.init({
dsn: config.sentry.dsn
})
It works fine on all desktop browsers. But when I try Safari/Chrome on iOS, it didn’t work. I tried on iPhone 12 Pro Max (iOS 14.4.2) and iPad Air 4 (iOS 14.4.2).
Updates:
It works with captureMessage, but not captureException
Sentry.captureMessage('Hello, world!') // work
Sentry.captureException(new Error('Good bye')) // not work
When I check the official documentation, it only listed iOS 12 & 13, does it mean the iOS 14 is not supported yet?
Thanks