diff --git a/editor/js/state.js b/editor/js/state.js
index 7240919bef243e724b7575ada8a10559a16de782..7fa5c11125e116fee9957ab706f542bafd90efc1 100644
--- a/editor/js/state.js
+++ b/editor/js/state.js
@@ -139,8 +139,6 @@ export class State extends Tool {
             return toolValue;
         }
 
-        // TODO: Clean up function
-
         // add ring just for highlighted nodes
         if (this.selectedItem === node || this.selectedItems.has(node)) {
             ctx.beginPath();
@@ -191,8 +189,6 @@ export class State extends Tool {
             ctx.fillStyle = "white";
             ctx.fillText(label, node.x, node.y + nodeHeightOffset);
         }
-
-        // TODO: Render label as always visible
     }
 
     nodePointerAreaPaint(node, color, ctx) {