Skip to content

Commit 97267dd

Browse files
fhennigclaude
andauthored
fix(website): set production collection IDs for RSV-A/B variant filter defaults (#1288)
## Summary - RSV-A `filterDefaults.variant.collectionId` was `undefined` in production — set to 5000 (A.D.1 lineage) - RSV-B `filterDefaults.variant.collectionId` was `undefined` in production — set to 5053 (B.D.E.1 lineage) I forgot to set these earlier 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 3143d5b commit 97267dd

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

website/src/types/wastewaterConfig.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ function buildWastewaterOrganismConfigs(isStaging: boolean): Record<WastewaterOr
170170
minCount: 15,
171171
minJaccard: 0.75,
172172
timeFrame: VARIANT_TIME_FRAME.all,
173-
collectionId: isStaging ? 4997 : undefined,
173+
collectionId: isStaging ? 4997 : 5000,
174174
},
175175
resistance: {
176176
mode: 'resistance',
@@ -241,7 +241,7 @@ function buildWastewaterOrganismConfigs(isStaging: boolean): Record<WastewaterOr
241241
minCount: 15,
242242
minJaccard: 0.75,
243243
timeFrame: VARIANT_TIME_FRAME.all,
244-
collectionId: isStaging ? 5050 : undefined,
244+
collectionId: isStaging ? 5050 : 5053,
245245
},
246246
resistance: {
247247
mode: 'resistance',

0 commit comments

Comments
 (0)