From 831d463b5c2cbb96e8c2658f532388cb67d7edeb Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Sun, 16 Nov 2025 17:57:05 -0700 Subject: [PATCH] fix: remove Vercel analytics import from App.tsx MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 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 --- src/App.tsx | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index 55564d8..2935a80 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -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 {