Skip to content

Commit

Permalink
Apply automatic upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrunner authored and renovate[bot] committed Sep 10, 2024
1 parent bcff982 commit 85550df
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@
"@lit/reactive-element": "2.0.4",
"@popperjs/core": "2.11.8",
"@sentry/browser": "8.29.0",
"@sentry/tracing": "7.114.0",
"@sentry/types": "8.29.0",
"@storybook/addon-essentials": "8.2.9",
"@storybook/addon-links": "8.2.9",
Expand Down
3 changes: 1 addition & 2 deletions src/controllers/AbstractAppController.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ import gmfMapComponent from 'gmf/map/component';
import {ThemeEventType} from 'gmf/theme/Manager';
import {getBrowserLanguage} from 'ngeo/utils';
import * as Sentry from '@sentry/browser';
import {Integrations} from '@sentry/tracing';
import createProjections from 'ngeo/proj/utils';
import olMap from 'ol/Map';
import olView from 'ol/View';
Expand Down Expand Up @@ -660,7 +659,7 @@ export function AbstractAppController($scope, $injector, mobile) {
if ($injector.has('sentryOptions')) {
const options = $injector.get('sentryOptions');
if (options.dsn) {
options.integrations = [new Integrations.BrowserTracing()];
options.integrations = [Integrations.browserTracingIntegration()];
const tags = options.tags || [];
delete options.tags;
Object.assign(options, {
Expand Down

0 comments on commit 85550df

Please sign in to comment.