From 674329dd9726cb05f3a26161902e25255fd518e8 Mon Sep 17 00:00:00 2001 From: apolignano Date: Thu, 13 Feb 2025 10:56:25 +0000 Subject: [PATCH] Hotfix --- src/components/ProteinViewer/utils.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/components/ProteinViewer/utils.ts b/src/components/ProteinViewer/utils.ts index a4f80bf74..da7e73253 100644 --- a/src/components/ProteinViewer/utils.ts +++ b/src/components/ProteinViewer/utils.ts @@ -258,14 +258,10 @@ export const standardizePTMData = ( ptmsEntriesGroupedByModification.push(newFeature); }); - console.log('here', ptmsEntriesGroupedByModification); - // PTMs coming from InterPro and external API should be in the same section but require different processing due to different structure (see above) entries = ptmsEntriesGroupedByModification.concat( entries.filter((entry) => entry.source_database === 'interpro'), ); - console.log('final', entries); - return [...entries]; };