diff --git a/src/compiler/compile/render_dom/wrappers/Element/index.ts b/src/compiler/compile/render_dom/wrappers/Element/index.ts index 2bba1bf285..837324da51 100644 --- a/src/compiler/compile/render_dom/wrappers/Element/index.ts +++ b/src/compiler/compile/render_dom/wrappers/Element/index.ts @@ -774,7 +774,8 @@ export default class ElementWrapper extends Wrapper { const dependencies = attribute.node.get_dependencies(); push_array(this.class_dependencies, dependencies); } else if (attribute.node.name === 'style') { - // TODO Is there a better way to handle this? + // TODO Is there a better way to get the dynamic dependencies + // of the style attribute? const dependencies = attribute.node.get_dependencies(); for (const dep of dependencies) {