From ea6c5ac43c9d26bb46b22284edb5b29a32715e20 Mon Sep 17 00:00:00 2001 From: kjs Date: Thu, 5 Mar 2026 21:41:53 +0900 Subject: [PATCH] fix: Remove unnecessary whitespace in SplitPanelLayoutComponent - Cleaned up the code by removing an unnecessary blank line in the SplitPanelLayoutComponent.tsx file. - This minor adjustment improves code readability without affecting functionality. --- .../v2-split-panel-layout/SplitPanelLayoutComponent.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/lib/registry/components/v2-split-panel-layout/SplitPanelLayoutComponent.tsx b/frontend/lib/registry/components/v2-split-panel-layout/SplitPanelLayoutComponent.tsx index 0cdf6836..865e6c44 100644 --- a/frontend/lib/registry/components/v2-split-panel-layout/SplitPanelLayoutComponent.tsx +++ b/frontend/lib/registry/components/v2-split-panel-layout/SplitPanelLayoutComponent.tsx @@ -106,7 +106,7 @@ export const SplitPanelLayoutComponent: React.FC ...props }) => { const componentConfig = (component.componentConfig || {}) as SplitPanelLayoutConfig; - + // πŸ› 디버깅: λ‘œλ“œ μ‹œ rightPanel.components 확인 const rightComps = componentConfig.rightPanel?.components || []; const finishedTimeline = rightComps.find((c: any) => c.id === "finished_timeline");