diff --git a/public/index.html b/public/index.html index 22948600cbce7b32f64ae68a5cf58be4c9baa08a..da0dde1a209b7f907036eaf7594ea8f4a8e854d2 100644 --- a/public/index.html +++ b/public/index.html @@ -37,7 +37,7 @@ Learn how to configure a non-root public URL by running `npm run build`. --> <link rel="stylesheet" href="%REACT_APP_STYLEGUIDE_URL%/css/styles.css" /> - <script src="https://polyfill.io/v3/polyfill.min.js?features=IntersectionObserver"></script> + <!--<script src="https://polyfill.io/v3/polyfill.min.js?features=IntersectionObserver"></script>--> </head> <body> <noscript>You need to enable JavaScript to run this app.</noscript> diff --git a/src/App.jsx b/src/App.jsx index 48eb79155f474ed93df4ceab5db37505f4856cdf..ff47a2363e6946ffe911d3148220da5c38760046 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -5,7 +5,7 @@ import { BrowserRouter as Router, Route, Routes } from "react-router-dom"; import { ReactKeycloakProvider as KeycloakProvider } from "@react-keycloak/web"; import { extraErrorDataIntegration } from "@sentry/integrations"; import * as Sentry from "@sentry/react"; -import { Integrations } from "@sentry/tracing"; +import { browserTracingIntegration } from "@sentry/browser" import { loadAnnouncements } from "actions/announcements"; import { loadConfig } from "actions/global-info"; @@ -33,7 +33,7 @@ if (process.env.REACT_APP_SENTRY_DSN) { Sentry.init({ dsn: process.env.REACT_APP_SENTRY_DSN, tracesSampleRate: 0.1, - integrations: [extraErrorDataIntegration(), new Integrations.BrowserTracing()], + integrations: [extraErrorDataIntegration(), new browserTracingIntegration()], }); }