From 2d2cc155aabcc5817352d91cf993974ca8715a01 Mon Sep 17 00:00:00 2001 From: Yihui Liao <44729383+yihuiliao@users.noreply.github.com> Date: Tue, 14 Apr 2026 09:53:27 -0700 Subject: [PATCH] fix: prevent items from getting continually loaded in S2 TreeView (#9921) --- packages/@react-spectrum/s2/src/TreeView.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/@react-spectrum/s2/src/TreeView.tsx b/packages/@react-spectrum/s2/src/TreeView.tsx index 1515dd47384..0b3ca51252a 100644 --- a/packages/@react-spectrum/s2/src/TreeView.tsx +++ b/packages/@react-spectrum/s2/src/TreeView.tsx @@ -86,6 +86,7 @@ const TreeRendererContext = createContext({}); const treeViewWrapper = style({ minHeight: 0, + height: 'full', minWidth: 160, display: 'flex', isolation: 'isolate',