Fix: Move console.log after activeIndicators declaration
Fixes ReferenceError from trying to access variable before initialization
This commit is contained in:
@ -1,9 +1,9 @@
|
||||
import { getAvailableIndicators, IndicatorRegistry as IR } from '../indicators/index.js';
|
||||
|
||||
console.log('[Module] indicators-panel-new.js loaded - activeIndicators count:', activeIndicators?.length || 0);
|
||||
|
||||
// State management
|
||||
let activeIndicators = [];
|
||||
|
||||
console.log('[Module] indicators-panel-new.js loaded - activeIndicators count:', activeIndicators?.length || 0);
|
||||
let configuringId = null;
|
||||
let searchQuery = '';
|
||||
let selectedCategory = 'all';
|
||||
|
||||
Reference in New Issue
Block a user