From 27febe18d3624a4687624b53924e335b33589bd0 Mon Sep 17 00:00:00 2001 From: Riley Crahen Date: Fri, 31 Oct 2025 09:56:11 -0700 Subject: [PATCH] pass through disallowTypeAhead to useGridListProps --- packages/react-aria-components/src/GridList.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/react-aria-components/src/GridList.tsx b/packages/react-aria-components/src/GridList.tsx index ec837fabffe..7711cf95e4e 100644 --- a/packages/react-aria-components/src/GridList.tsx +++ b/packages/react-aria-components/src/GridList.tsx @@ -156,7 +156,8 @@ function GridListInner({props, collection, gridListRef: ref}: // Only tab navigation is supported in grid layout. keyboardNavigationBehavior: layout === 'grid' ? 'tab' : keyboardNavigationBehavior, isVirtualized, - shouldSelectOnPressUp: props.shouldSelectOnPressUp + shouldSelectOnPressUp: props.shouldSelectOnPressUp, + disallowTypeAhead }, filteredState, ref); let selectionManager = filteredState.selectionManager;