From 1cc77d8a69b1bab95d1ef2783590770fe6df7fa3 Mon Sep 17 00:00:00 2001 From: Gerardo Date: Tue, 1 Aug 2023 16:48:04 +0200 Subject: [PATCH] Mobile - KeyboardAwareFlatList - Set scrollEnabled to false for the FlatList component to avoid an error message, scroll is not actually needed within the FlatList since the ScrollView is the component that handles it --- .../components/src/mobile/keyboard-aware-flat-list/index.ios.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/components/src/mobile/keyboard-aware-flat-list/index.ios.js b/packages/components/src/mobile/keyboard-aware-flat-list/index.ios.js index 90fda81d05b2f6..8b233612763814 100644 --- a/packages/components/src/mobile/keyboard-aware-flat-list/index.ios.js +++ b/packages/components/src/mobile/keyboard-aware-flat-list/index.ios.js @@ -154,7 +154,7 @@ export const KeyboardAwareFlatList = ( { scrollEventThrottle={ 16 } style={ style } > - + ); };