Skip to main content

Hello community,

I'd like to track extension errors in Sentry. The default setup (below) that works for a sample react project doesn't work in an Airtable extension -- the events don't get captured in Sentry.

import * as Sentry from '@sentry/react';

Sentry.init({
dsn: DSN_STRING,
environment: process.env.NODE_ENV,
tracesSampleRate: 1.0,
});

Is there something else to be configured for the extension since the code is remotely deployed in Airtable server?

Be the first to reply!

Reply