diff --git a/src/components/CurrencySelectionList/index.tsx b/src/components/CurrencySelectionList/index.tsx index 88c494253139..f1200dbb2cc9 100644 --- a/src/components/CurrencySelectionList/index.tsx +++ b/src/components/CurrencySelectionList/index.tsx @@ -112,6 +112,7 @@ function CurrencySelectionList({ showScrollIndicator canSelectMultiple={canSelectMultiple} showLoadingPlaceholder={!didScreenTransitionEnd} + isRowMultilineSupported={false} /> ); } diff --git a/src/components/SelectionListWithSections/index.native.tsx b/src/components/SelectionListWithSections/index.native.tsx index 4aeb36526e4f..e47017b38abc 100644 --- a/src/components/SelectionListWithSections/index.native.tsx +++ b/src/components/SelectionListWithSections/index.native.tsx @@ -3,7 +3,7 @@ import {Keyboard} from 'react-native'; import BaseSelectionList from './BaseSelectionListWithSections'; import type {ListItem, SelectionListProps} from './types'; -function SelectionListWithSections({shouldHideKeyboardOnScroll = true, ref, ...props}: SelectionListProps) { +function SelectionListWithSections({shouldHideKeyboardOnScroll = true, ref, isRowMultilineSupported = true, ...props}: SelectionListProps) { return ( ({shouldHideKeyboardOn } Keyboard.dismiss(); }} - isRowMultilineSupported + isRowMultilineSupported={isRowMultilineSupported} /> ); }