From aa6ea06d6eb28eb076c941c72db6a122a7d1fb55 Mon Sep 17 00:00:00 2001 From: That Thing Date: Tue, 24 Oct 2023 14:08:44 -0400 Subject: [PATCH] Removed unnecessary console log and comments. --- dev/lis-trait-association-search-element.html | 3 --- 1 file changed, 3 deletions(-) diff --git a/dev/lis-trait-association-search-element.html b/dev/lis-trait-association-search-element.html index 992572a..a35c8d8 100644 --- a/dev/lis-trait-association-search-element.html +++ b/dev/lis-trait-association-search-element.html @@ -161,10 +161,7 @@

<lis-association-search-element>

// Flatten results const results = data.traits.results.map(({name, ...study}) => { - //const studyType = study.qtlStudy || study.gwas; // Only one study - // Needs to return identifier, type, synopsis, description, name, genotypes const type = study.qtlStudy ? 'QTL' : 'GWAS'; - console.log(type); const studyTypeObject = study.qtlStudy || study.gwas; if (!studyTypeObject) { // Should never happen return {};