Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
lint fix
  • Loading branch information
Lms24 committed Mar 18, 2026
commit aa83a81489fb76c0af9792dd6938ccc5c72f49f5
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ declare global {
}
}

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

Sentry.init({
environment: "qa", // dynamic sampling bias to keep transactions
environment: 'qa', // dynamic sampling bias to keep transactions
dsn: window.ENV.SENTRY_DSN,
integrations: [
Sentry.browserTracingIntegration({
Expand All @@ -31,7 +31,7 @@ Sentry.init({
],
// Performance Monitoring
tracesSampleRate: 1.0, // Capture 100% of the transactions
tunnel: "http://localhost:3031/", // proxy server
tunnel: 'http://localhost:3031/', // proxy server
});

startTransition(() => {
Expand Down
Loading