File tree Expand file tree Collapse file tree 1 file changed +12
-10
lines changed Expand file tree Collapse file tree 1 file changed +12
-10
lines changed Original file line number Diff line number Diff line change 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
1110Sentry . 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 ) ;
You can’t perform that action at this time.
0 commit comments