From 8538bcb02ecdad14d6a043ecb6a8f0fa70912ddc Mon Sep 17 00:00:00 2001
From: regalijan <r@regalijan.com>
Date: Thu, 19 Oct 2023 16:49:49 -0400
Subject: [PATCH] Move to new tracing module

---
 app/entry.client.tsx | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/app/entry.client.tsx b/app/entry.client.tsx
index ff28611..9ee3a56 100644
--- a/app/entry.client.tsx
+++ b/app/entry.client.tsx
@@ -2,7 +2,6 @@ import { CacheProvider } from "@emotion/react";
 import { ClientStyleContext } from "./context.js";
 import createEmotionCache from "./createEmotionCache.js";
 import { hydrateRoot } from "react-dom/client";
-import { Integrations } from "@sentry/tracing";
 import { RemixBrowser } from "@remix-run/react";
 import * as Sentry from "@sentry/react";
 import { type ReactNode, StrictMode, useState } from "react";
@@ -11,7 +10,7 @@ Sentry.init({
   dsn:
     document.querySelector("meta[name='dsn']")?.getAttribute("content") ??
     undefined,
-  integrations: [new Integrations.BrowserTracing()],
+  integrations: [new Sentry.BrowserTracing()],
   tracesSampleRate: 0.1,
 });