This commit is contained in:
yyh
2026-05-14 11:41:35 +08:00
parent 2e0c729c0c
commit fea4dc06c5

View File

@ -43,7 +43,7 @@ type NodeWithOptionalDimensions = Pick<Node, 'data' | 'type'> & {
height?: number
}
export const shouldUseExplicitNodeDimensions = (node: Pick<Node, 'data' | 'type'>) => {
const shouldUseExplicitNodeDimensions = (node: Pick<Node, 'data' | 'type'>) => {
return node.type === CUSTOM_NOTE_NODE
|| node.data.type === BlockEnum.Iteration
|| node.data.type === BlockEnum.Loop