diff --git a/apps/web/src/bootstrap.tsx b/apps/web/src/bootstrap.tsx index 352525645..f91942448 100644 --- a/apps/web/src/bootstrap.tsx +++ b/apps/web/src/bootstrap.tsx @@ -23,7 +23,7 @@ import { getCurrentHash, getCurrentPath, makeURL } from "./navigation"; import Config from "./utils/config"; import { initializeLogger, logger } from "./utils/logger"; -import { AuthProps } from "./views/auth"; +import type { AuthProps } from "./views/auth"; import { initializeFeatureChecks } from "./utils/feature-check"; type Route = { diff --git a/apps/web/src/components/error-boundary/index.tsx b/apps/web/src/components/error-boundary/index.tsx index 0d9ac5bc0..dc3248aca 100644 --- a/apps/web/src/components/error-boundary/index.tsx +++ b/apps/web/src/components/error-boundary/index.tsx @@ -29,7 +29,6 @@ import Logo from "../../assets/logo.svg"; import LogoDark from "../../assets/logo-dark.svg"; import { useStore as useThemeStore } from "../../stores/theme-store"; import { createDialect } from "../../common/sqlite"; -import { getDeviceInfo } from "../../dialogs/issue-dialog"; export function ErrorBoundary(props: PropsWithChildren) { return ( @@ -96,7 +95,10 @@ export function ErrorComponent({ error, resetErrorBoundary }: FallbackProps) {