We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9703f5f commit 0e82669Copy full SHA for 0e82669
2 files changed
src/components/LRLSExplorer.tsx
@@ -172,7 +172,7 @@ export default function LRLSExplorer() {
172
</div>
173
<select
174
value={sourceFilter}
175
- onChange={e => setSourceFilter(e.target.value)}
+ onChange={e => setSourceFilter(e.target.value as SourceFilterValue)}
176
style={{
177
padding: '4px 10px',
178
background: '#1e2a45',
src/components/OverlapExplorer.tsx
@@ -67,7 +67,6 @@ export default function OverlapExplorer() {
67
// Stats
68
const totalRRLS = rrls.length;
69
const totalNTS = nts.length;
70
- const overlapCount = filtered.length;
71
const rrlsOnly = totalRRLS - overlapChunks.size;
72
const ntsOnly = totalNTS - overlapChunks.size;
73
const overlapPct = totalRRLS > 0 ? ((overlapChunks.size / totalRRLS) * 100).toFixed(1) : '0';
0 commit comments