[refactor] Remove redundant module comment (#5711)

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:


c1d4709e96/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)
This commit is contained in:
Christian Byrne
2025-09-21 14:30:58 -07:00
committed by GitHub
parent c4c0e52e64
commit abd6823744

View File

@@ -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'