fix: suppress unused variable TS errors that block release build

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Dave
2026-03-19 16:41:04 +00:00
parent eb9707d8b6
commit 8a6eeacb5e
2 changed files with 3 additions and 3 deletions

View File

@@ -3,14 +3,14 @@ import { api } from "./api/client";
import { Chat } from "./components/Chat";
import { SelectionScreen } from "./components/selection/SelectionScreen";
import { usePathCompletion } from "./components/selection/usePathCompletion";
import { TokenUsagePage } from "./components/TokenUsagePage";
import { TokenUsagePage as _TokenUsagePage } from "./components/TokenUsagePage";
import "./App.css";
type AppView = "chat" | "token-usage";
function App() {
const [projectPath, setProjectPath] = React.useState<string | null>(null);
const [view, setView] = React.useState<AppView>("chat");
const [_view, setView] = React.useState<AppView>("chat");
const [isCheckingProject, setIsCheckingProject] = React.useState(true);
const [errorMsg, setErrorMsg] = React.useState<string | null>(null);
const [pathInput, setPathInput] = React.useState("");