Skip to content

Commit 0e82669

Browse files
Stephanclaude
andcommitted
Fix TS errors: LRLS source filter type cast, remove unused overlapCount
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 9703f5f commit 0e82669

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

src/components/LRLSExplorer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ export default function LRLSExplorer() {
172172
</div>
173173
<select
174174
value={sourceFilter}
175-
onChange={e => setSourceFilter(e.target.value)}
175+
onChange={e => setSourceFilter(e.target.value as SourceFilterValue)}
176176
style={{
177177
padding: '4px 10px',
178178
background: '#1e2a45',

src/components/OverlapExplorer.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ export default function OverlapExplorer() {
6767
// Stats
6868
const totalRRLS = rrls.length;
6969
const totalNTS = nts.length;
70-
const overlapCount = filtered.length;
7170
const rrlsOnly = totalRRLS - overlapChunks.size;
7271
const ntsOnly = totalNTS - overlapChunks.size;
7372
const overlapPct = totalRRLS > 0 ? ((overlapChunks.size / totalRRLS) * 100).toFixed(1) : '0';

0 commit comments

Comments
 (0)