diff --git a/rsconcept/frontend/src/pages/RSFormPage/ViewConstituents/ConstituentsSearch.tsx b/rsconcept/frontend/src/pages/RSFormPage/ViewConstituents/ConstituentsSearch.tsx index 95c63fee..e306ce2b 100644 --- a/rsconcept/frontend/src/pages/RSFormPage/ViewConstituents/ConstituentsSearch.tsx +++ b/rsconcept/frontend/src/pages/RSFormPage/ViewConstituents/ConstituentsSearch.tsx @@ -41,7 +41,6 @@ function ConstituentsSearch({ schema, activeID, activeExpression, setFiltered }: let result: IConstituenta[] = []; if (filterSource === DependencyMode.EXPRESSION) { const aliases = extractGlobals(activeExpression); - console.log(aliases); result = schema.items.filter((cst) => aliases.has(cst.alias)); const names = result.map(cst => cst.alias) const diff = Array.from(aliases).filter(name => !names.includes(name));