카테고리 기능 구현

This commit is contained in:
kjs
2025-11-05 15:23:57 +09:00
parent f4fd1184cd
commit 573a300a4a
35 changed files with 9577 additions and 131 deletions

View File

@@ -384,7 +384,7 @@ export const RealtimePreviewDynamic: React.FC<RealtimePreviewProps> = ({
const isFlowWidget = type === "flow" || (type === "component" && (component as any).componentConfig?.type === "flow-widget");
// 높이 결정 로직
let finalHeight = size?.height || 40;
let finalHeight = size?.height || 10;
if (isFlowWidget && actualHeight) {
finalHeight = actualHeight;
}