Facing the problem to integrate sentry in react native web

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 ?.

Thanks for your message, the RN SDK should be fine, but you’ve to disable the Native layer by disabling the enableNative flag during SDK init.

In case you face problems, please raise an issue on our repo describing the problem and logs/errors if possible, thanks.