I try to integrate the sentry for react native web. but sentry not sending the error log to sentry dashboard. i am using the sentry/react in react native web.
import * as Sentry from "@sentry/react";
import { BrowserTracing } from "@sentry/tracing";
Sentry.init({environment:AppConstant.env ,dsn:AppConstants.sentryDNS , integrations: [new BrowserTracing()],tracesSampleRate: 1.0});
should i use sentry/react or sentry/reactnative for react native web ?.