From fcda73dcdb27ab2ef447f7f3ef73fba1b922286f Mon Sep 17 00:00:00 2001 From: Eskalifer1 Date: Tue, 6 Jan 2026 19:13:47 +0200 Subject: [PATCH] fix:76996: Android - Workspace - Currency symbol disappear for some currencies after selecting different currency --- src/components/CurrencySelectionList/index.tsx | 1 + src/components/SelectionListWithSections/index.native.tsx | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) 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} /> ); }