Skip to content

Commit

Permalink
Fixed build
Browse files Browse the repository at this point in the history
  • Loading branch information
GermanBluefox committed Oct 3, 2024
1 parent 4a18c2c commit 3782c66
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import React from 'react';
import * as PropTypes from 'prop-types';
import { ThemeProvider, StyledEngineProvider } from '@mui/material/styles';
import * as Sentry from '@sentry/browser';
import * as SentryIntegrations from '@sentry/integrations';

import { AppBar, Avatar, Button, Card, CardActions, CardContent, CardMedia, Toolbar, Typography } from '@mui/material';

Expand Down Expand Up @@ -68,8 +67,9 @@ class App extends React.Component {
Sentry.init({
dsn: this.sentryDSN,
release: `iobroker.welcome@${window.adapterVersion}`,
integrations: [new SentryIntegrations.Dedupe()],
integrations: [Sentry.dedupeIntegration()],
});

const theme = Theme(Utils.getThemeName(''));

this.state = {
Expand Down

0 comments on commit 3782c66

Please sign in to comment.