Skip to content

Commit

Permalink
fix #48965
Browse files Browse the repository at this point in the history
  • Loading branch information
rushatgabhane committed Sep 16, 2024
1 parent 0618191 commit ca0e5d4
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ function SelectDelegateRolePage({route}: SelectDelegateRolePageProps) {
const roleOptions = Object.values(CONST.DELEGATE_ROLE).map((role) => ({
value: role,
text: translate('delegate.role', role),
keyForList: role,
alternateText: translate('delegate.roleDescription', role),
isSelected: role === route.params.role,
keyForList: role,
}));

return (
Expand All @@ -41,6 +41,7 @@ function SelectDelegateRolePage({route}: SelectDelegateRolePageProps) {
<SelectionList
isAlternateTextMultilineSupported
alternateTextNumberOfLines={4}
initiallyFocusedOptionKey={route.params.role}
headerContent={
<Text style={[styles.ph5, styles.pb5, styles.pt3]}>
<>
Expand Down

0 comments on commit ca0e5d4

Please sign in to comment.