From dd10169255fe00ae41ac2e8fff082bfee8f632ef Mon Sep 17 00:00:00 2001 From: Michael Chihlas Date: Sun, 8 Mar 2026 13:25:16 -0400 Subject: [PATCH] fix: ViewTransitionOutlet needs h-full for React Flow canvas The wrapper div broke the height chain needed by TreeEditorPage's h-full layout, causing React Flow canvas to collapse to zero height. Co-Authored-By: Claude Opus 4.6 --- frontend/src/components/layout/ViewTransitionOutlet.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/layout/ViewTransitionOutlet.tsx b/frontend/src/components/layout/ViewTransitionOutlet.tsx index 862c2619..b6b234c6 100644 --- a/frontend/src/components/layout/ViewTransitionOutlet.tsx +++ b/frontend/src/components/layout/ViewTransitionOutlet.tsx @@ -14,7 +14,7 @@ export function ViewTransitionOutlet() { const routeKey = segments.slice(0, 2).join('/') || '/' return ( -
+
)