fix: remove Vercel analytics import from App.tsx
- Remove @vercel/analytics import - Remove inject() call - Fixes build error: Cannot find module '@vercel/analytics' 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
8c9eaa1d2b
commit
831d463b5c
|
|
@ -7,7 +7,6 @@ import { Board } from "./routes/Board"
|
||||||
import { Inbox } from "./routes/Inbox"
|
import { Inbox } from "./routes/Inbox"
|
||||||
import { Presentations } from "./routes/Presentations"
|
import { Presentations } from "./routes/Presentations"
|
||||||
import { Resilience } from "./routes/Resilience"
|
import { Resilience } from "./routes/Resilience"
|
||||||
import { inject } from "@vercel/analytics"
|
|
||||||
import { createRoot } from "react-dom/client"
|
import { createRoot } from "react-dom/client"
|
||||||
import { DailyProvider } from "@daily-co/daily-react"
|
import { DailyProvider } from "@daily-co/daily-react"
|
||||||
import Daily from "@daily-co/daily-js"
|
import Daily from "@daily-co/daily-js"
|
||||||
|
|
@ -35,8 +34,6 @@ import { ErrorBoundary } from './components/ErrorBoundary';
|
||||||
import CryptoLogin from './components/auth/CryptoLogin';
|
import CryptoLogin from './components/auth/CryptoLogin';
|
||||||
import CryptoDebug from './components/auth/CryptoDebug';
|
import CryptoDebug from './components/auth/CryptoDebug';
|
||||||
|
|
||||||
inject();
|
|
||||||
|
|
||||||
// Initialize Daily.co call object with error handling
|
// Initialize Daily.co call object with error handling
|
||||||
let callObject: any = null;
|
let callObject: any = null;
|
||||||
try {
|
try {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue