We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 460df97 commit 692cca1Copy full SHA for 692cca1
app/viewModelBuilders/azul/hca-dcp/common/viewModelBuilders.ts
@@ -1519,7 +1519,7 @@ function calculateEstimatedCellCount(
1519
export function filterBioNetworks(
1520
responseValues: (NetworkKey | null)[]
1521
): NetworkKey[] {
1522
- return responseValues.filter(isBioNetwork);
+ return Array.from(new Set(responseValues.filter(isBioNetwork)));
1523
}
1524
1525
/**
0 commit comments