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:43:42 +00:00
parent 8a6eeacb5e
commit 8074e3b420
2 changed files with 4 additions and 5 deletions

View File

@@ -88,7 +88,9 @@ interface TokenUsagePageProps {
projectPath: string;
}
export function TokenUsagePage({ projectPath: _projectPath }: TokenUsagePageProps) {
export function TokenUsagePage({
projectPath: _projectPath,
}: TokenUsagePageProps) {
const [records, setRecords] = React.useState<TokenUsageRecord[]>([]);
const [loading, setLoading] = React.useState(true);
const [error, setError] = React.useState<string | null>(null);