Skip to content

Commit 36a0559

Browse files
committed
fix: Remove conditional paddingY assignment in createRectNode function
1 parent f83714b commit 36a0559

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libs/visual-programming-system/src/utils/create-rect-node.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ export const createRectNode = <T extends BaseNodeInfo>(
130130
if (settings?.hasCustomStyling) {
131131
colorClasses = '';
132132
}
133-
let paddingY = showTitlebar ? 'py-2' : '';
133+
let paddingY = ''; //showTitlebar ? 'py-2' : '';
134134
if (settings?.hasCustomStyling) {
135135
paddingY = '';
136136
}

0 commit comments

Comments
 (0)