Skip to content

Commit 1cc1d85

Browse files
committed
formatting
1 parent f06aa41 commit 1cc1d85

File tree

1 file changed

+12
-10
lines changed

1 file changed

+12
-10
lines changed

src/index.tsx

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
1-
import * as React from "react"
2-
import * as ReactDOM from "react-dom"
1+
import * as React from 'react';
2+
import * as ReactDOM from 'react-dom';
33

4-
import * as Sentry from "@sentry/react";
5-
import { BrowserTracing } from "@sentry/tracing";
6-
import { CaptureConsole as CaptureConsoleIntegration } from "@sentry/integrations";
4+
import * as Sentry from '@sentry/react';
5+
import { BrowserTracing } from '@sentry/tracing';
6+
import { CaptureConsole as CaptureConsoleIntegration } from '@sentry/integrations';
77

8-
9-
import App from "./App"
8+
import App from './App';
109

1110
Sentry.init({
1211
dsn: process.env.SENTRY_DSN,
13-
integrations: [new BrowserTracing(), new CaptureConsoleIntegration({levels: ['error']})],
12+
integrations: [
13+
new BrowserTracing(),
14+
new CaptureConsoleIntegration({ levels: ['error'] }),
15+
],
1416
tracesSampleRate: 1.0,
1517
});
1618

17-
const root = document.getElementById("root")
18-
ReactDOM.render(<App />, root)
19+
const root = document.getElementById('root');
20+
ReactDOM.render(<App />, root);

0 commit comments

Comments
 (0)