Remove import of non-existent removeIndicatorByIndex from app.js
app.js was trying to import removeIndicatorByIndex which no longer exists in indicators-panel-new.js. Removed it from the import statement to fix the ES6 module error.
This commit is contained in:
@ -26,8 +26,7 @@ import {
|
|||||||
setActiveIndicators,
|
setActiveIndicators,
|
||||||
drawIndicatorsOnChart,
|
drawIndicatorsOnChart,
|
||||||
addIndicator,
|
addIndicator,
|
||||||
removeIndicatorById,
|
removeIndicatorById
|
||||||
removeIndicatorByIndex
|
|
||||||
} from './ui/indicators-panel-new.js';
|
} from './ui/indicators-panel-new.js';
|
||||||
import { StrategyParams } from './strategies/config.js';
|
import { StrategyParams } from './strategies/config.js';
|
||||||
import { IndicatorRegistry } from './indicators/index.js';
|
import { IndicatorRegistry } from './indicators/index.js';
|
||||||
|
|||||||
Reference in New Issue
Block a user