Skip to content

Commit aa83a81

Browse files
committed
lint fix
1 parent 15fface commit aa83a81

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

  • dev-packages/e2e-tests/test-applications/remix-server-timing/app

dev-packages/e2e-tests/test-applications/remix-server-timing/app/entry.client.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ declare global {
1414
}
1515
}
1616

17-
import { RemixBrowser, useLocation, useMatches } from "@remix-run/react";
18-
import * as Sentry from "@sentry/remix";
19-
import { StrictMode, startTransition, useEffect } from "react";
20-
import { hydrateRoot } from "react-dom/client";
17+
import { RemixBrowser, useLocation, useMatches } from '@remix-run/react';
18+
import * as Sentry from '@sentry/remix';
19+
import { StrictMode, startTransition, useEffect } from 'react';
20+
import { hydrateRoot } from 'react-dom/client';
2121

2222
Sentry.init({
23-
environment: "qa", // dynamic sampling bias to keep transactions
23+
environment: 'qa', // dynamic sampling bias to keep transactions
2424
dsn: window.ENV.SENTRY_DSN,
2525
integrations: [
2626
Sentry.browserTracingIntegration({
@@ -31,7 +31,7 @@ Sentry.init({
3131
],
3232
// Performance Monitoring
3333
tracesSampleRate: 1.0, // Capture 100% of the transactions
34-
tunnel: "http://localhost:3031/", // proxy server
34+
tunnel: 'http://localhost:3031/', // proxy server
3535
});
3636

3737
startTransition(() => {

0 commit comments

Comments
 (0)