From 88cbc6be7bdd5b85aede87a24df16ff5b9d4292d Mon Sep 17 00:00:00 2001 From: jtricerolph Date: Thu, 2 Jul 2026 20:17:57 +0000 Subject: [PATCH] Fix TS build errors: vite/client types, remove unused inputStyle Co-Authored-By: Claude Sonnet 4.6 --- frontend/src/pages/Settings.tsx | 6 ------ frontend/tsconfig.json | 3 ++- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/frontend/src/pages/Settings.tsx b/frontend/src/pages/Settings.tsx index 673fc28..0e74176 100644 --- a/frontend/src/pages/Settings.tsx +++ b/frontend/src/pages/Settings.tsx @@ -62,12 +62,6 @@ export function Settings() { ) } - const inputStyle: React.CSSProperties = { - width: '100%', border: '1px solid var(--card-border)', borderRadius: '6px', - padding: '0.45rem 0.6rem', fontSize: '0.85rem', color: 'var(--text-dark)', - background: 'var(--body-bg)', - } - return (

diff --git a/frontend/tsconfig.json b/frontend/tsconfig.json index 1538675..23228a1 100644 --- a/frontend/tsconfig.json +++ b/frontend/tsconfig.json @@ -9,7 +9,8 @@ "noUnusedLocals": true, "noUnusedParameters": true, "noFallthroughCasesInSwitch": true, - "skipLibCheck": true + "skipLibCheck": true, + "types": ["vite/client"] }, "include": ["src"] }