From abd6823744fd543154f3d64a9fc0c0fc24420236 Mon Sep 17 00:00:00 2001 From: Christian Byrne Date: Sun, 21 Sep 2025 14:30:58 -0700 Subject: [PATCH] [refactor] Remove redundant module comment (#5711) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Removes a comment added in initial Vue Nodes commit. The comment is interpolated between import statements which is stylistically awkward and it is almost totally redundant with the doc comment on the composable: https://github.com/Comfy-Org/ComfyUI_frontend/blob/c1d4709e96a642188751007e7b76f12d496a0163/src/renderer/extensions/vueNodes/layout/useNodeLayout.ts#L10-L14 ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-5711-refactor-Remove-redundant-module-comment-2756d73d365081ef9bffe0257b3670f1) by [Unito](https://www.unito.io) --- src/renderer/extensions/vueNodes/layout/useNodeLayout.ts | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/renderer/extensions/vueNodes/layout/useNodeLayout.ts b/src/renderer/extensions/vueNodes/layout/useNodeLayout.ts index 515ebb04e..89718eb8d 100644 --- a/src/renderer/extensions/vueNodes/layout/useNodeLayout.ts +++ b/src/renderer/extensions/vueNodes/layout/useNodeLayout.ts @@ -1,10 +1,4 @@ import { storeToRefs } from 'pinia' -/** - * Composable for individual Vue node components - * - * Uses customRef for shared write access with Canvas renderer. - * Provides dragging functionality and reactive layout state. - */ import { type MaybeRefOrGetter, computed, inject, toValue } from 'vue' import { useCanvasStore } from '@/renderer/core/canvas/canvasStore'