Fix syntax error in indicators-panel-new.js

Remove duplicate code lines that were causing SyntaxError
This commit is contained in:
DiTus
2026-02-26 15:22:30 +01:00
parent b213071251
commit c3d72b5557

View File

@ -116,10 +116,6 @@ export function renderIndicatorPanel() {
const cat = CATEGORY_MAP[ind.type] || 'trend';
return cat === selectedCategory;
});
if (selectedCategory === 'favorites') return false;
const cat = CATEGORY_MAP[ind.type] || 'trend';
return cat === selectedCategory;
});
const favoriteIds = new Set(userPresets.favorites || []);