From f9cc0a9a78cd49e8890f2573e6a21f3eb93b109b Mon Sep 17 00:00:00 2001 From: DiTus Date: Wed, 25 Feb 2026 23:10:27 +0100 Subject: [PATCH] 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. --- src/api/dashboard/static/js/app.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/api/dashboard/static/js/app.js b/src/api/dashboard/static/js/app.js index df18cca..7b6bb01 100644 --- a/src/api/dashboard/static/js/app.js +++ b/src/api/dashboard/static/js/app.js @@ -26,8 +26,7 @@ import { setActiveIndicators, drawIndicatorsOnChart, addIndicator, - removeIndicatorById, - removeIndicatorByIndex + removeIndicatorById } from './ui/indicators-panel-new.js'; import { StrategyParams } from './strategies/config.js'; import { IndicatorRegistry } from './indicators/index.js';