Remove non-existent removeIndicatorByIndex from export

Line 773 was exporting removeIndicatorByIndex which doesn't exist as a function.
Removed it from the export statement, keeping only addIndicator and removeIndicatorById
which are both defined functions in the module.
This commit is contained in:
DiTus
2026-02-25 23:09:40 +01:00
parent 03cf60abac
commit 5e8c368b68

View File

@ -770,7 +770,7 @@ export function drawIndicatorsOnChart() {
} }
// Export functions for module access // Export functions for module access
export { addIndicator, removeIndicatorById, removeIndicatorByIndex }; export { addIndicator, removeIndicatorById };
// Legacy compatibility functions // Legacy compatibility functions
window.renderIndicatorList = renderIndicatorPanel; window.renderIndicatorList = renderIndicatorPanel;