We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c803c6a commit 2e2f2d2Copy full SHA for 2e2f2d2
nist-interface/src/pages/dashboardContainer/index.jsx
@@ -35,7 +35,8 @@ export function DashboardContainer({
35
try {
36
// fetch in the collection from the features api
37
const url = `${config?.featuresApiUrl}/collections`;
38
- const collections = await fetchAllFromFeaturesAPI(url);
+ let collections = await fetchAllFromFeaturesAPI(url);
39
+ collections = collections.filter((elem) => !['public.nist_testbed_lam_usc1_co2_hourly_concentrations', 'public.nist_testbed_lam_usc1_ch4_hourly_concentrations'].includes(elem.id));
40
const collectionsMetaData = await extractMetaData(collections, config);
41
const metaDataDict = getMetaDataDictionary(collectionsMetaData);
42
setStationMetadata(metaDataDict);
0 commit comments