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
2f53818b47
commit
d4b99061fb
|
|
@ -7,7 +7,6 @@ import { Board } from "./routes/Board"
|
|||
import { Inbox } from "./routes/Inbox"
|
||||
import { Presentations } from "./routes/Presentations"
|
||||
import { Resilience } from "./routes/Resilience"
|
||||
import { inject } from "@vercel/analytics"
|
||||
import { createRoot } from "react-dom/client"
|
||||
import { DailyProvider } from "@daily-co/daily-react"
|
||||
import Daily from "@daily-co/daily-js"
|
||||
|
|
@ -35,8 +34,6 @@ import { ErrorBoundary } from './components/ErrorBoundary';
|
|||
import CryptoLogin from './components/auth/CryptoLogin';
|
||||
import CryptoDebug from './components/auth/CryptoDebug';
|
||||
|
||||
inject();
|
||||
|
||||
// Initialize Daily.co call object with error handling
|
||||
let callObject: any = null;
|
||||
try {
|
||||
|
|
|
|||
Loading…
Reference in New Issue