fix: add missing import for Sentry

This commit is contained in:
Derrick Hammer 2023-08-13 23:27:27 -04:00
parent 222cc1c94b
commit 9c76875915
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
2 changed files with 2 additions and 0 deletions

View File

@ -1,5 +1,6 @@
import { createRoot } from "react-dom";
import React from "react";
import * as Sentry from "@sentry/browser";
import App from "./apps/dashboard/App.jsx";
import { SENTRY_DSN } from "../shared/constants.ts";

View File

@ -1,6 +1,7 @@
import { createRoot } from "react-dom";
import React from "react";
import App from "./apps/onboarding/App.tsx";
import * as Sentry from "@sentry/browser";
import { SENTRY_DSN } from "../shared/constants.ts";
Sentry.init({ dsn: SENTRY_DSN });