Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ import React from 'react';
import HeaderWithBackButton from '@components/HeaderWithBackButton';
import Icon from '@components/Icon';
import ScreenWrapper from '@components/ScreenWrapper';
import SelectionList from '@components/SelectionListWithSections';
import RadioListItem from '@components/SelectionListWithSections/RadioListItem';
import type {ListItem} from '@components/SelectionListWithSections/types';
import SelectionList from '@components/SelectionList';
import RadioListItem from '@components/SelectionList/ListItem/RadioListItem';
import type {ListItem} from '@components/SelectionList/types';
import useDefaultFundID from '@hooks/useDefaultFundID';
import useExpensifyCardFeeds from '@hooks/useExpensifyCardFeeds';
import {useMemoizedLazyIllustrations} from '@hooks/useLazyAsset';
Expand Down Expand Up @@ -84,10 +84,9 @@ function WorkspaceExpensifyCardSelectorPage({route}: WorkspaceExpensifyCardSelec
<SelectionList
ListItem={RadioListItem}
onSelectRow={selectFeed}
sections={[{data: feeds}]}
shouldUpdateFocusedIndex
isAlternateTextMultilineSupported
initiallyFocusedOptionKey={lastSelectedExpensifyCardFeed?.toString()}
data={feeds}
alternateNumberOfSupportedLines={2}
initiallyFocusedItemKey={lastSelectedExpensifyCardFeed?.toString()}
/>
</ScreenWrapper>
</AccessOrNotFoundWrapper>
Expand Down
Loading