fix: add missing import for Sentry
This commit is contained in:
parent
222cc1c94b
commit
9c76875915
|
@ -1,5 +1,6 @@
|
||||||
import { createRoot } from "react-dom";
|
import { createRoot } from "react-dom";
|
||||||
import React from "react";
|
import React from "react";
|
||||||
|
import * as Sentry from "@sentry/browser";
|
||||||
import App from "./apps/dashboard/App.jsx";
|
import App from "./apps/dashboard/App.jsx";
|
||||||
import { SENTRY_DSN } from "../shared/constants.ts";
|
import { SENTRY_DSN } from "../shared/constants.ts";
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
import { createRoot } from "react-dom";
|
import { createRoot } from "react-dom";
|
||||||
import React from "react";
|
import React from "react";
|
||||||
import App from "./apps/onboarding/App.tsx";
|
import App from "./apps/onboarding/App.tsx";
|
||||||
|
import * as Sentry from "@sentry/browser";
|
||||||
import { SENTRY_DSN } from "../shared/constants.ts";
|
import { SENTRY_DSN } from "../shared/constants.ts";
|
||||||
|
|
||||||
Sentry.init({ dsn: SENTRY_DSN });
|
Sentry.init({ dsn: SENTRY_DSN });
|
||||||
|
|
Reference in New Issue