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

@@ -88,7 +88,7 @@ interface TokenUsagePageProps {
projectPath: string;
}
export function TokenUsagePage({ 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);