Skip to content

Commit

Permalink
Merge pull request #38569 from Pujan92/fix/36935
Browse files Browse the repository at this point in the history
Fix: The last description in the Hold educational modal is truncated.
  • Loading branch information
tylerkaraszewski authored Mar 20, 2024
2 parents a979d7d + b14bc02 commit ba0816b
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/components/HoldMenuSectionList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,12 +59,7 @@ function HoldMenuSectionList() {
/>
<View style={[styles.flex1, styles.justifyContentCenter]}>
<Text style={[styles.textStrong, styles.mb1]}>{translate(section.titleTranslationKey)}</Text>
<Text
style={[styles.textNormal]}
numberOfLines={3}
>
{translate(section.descriptionTranslationKey)}
</Text>
<Text style={[styles.textNormal]}>{translate(section.descriptionTranslationKey)}</Text>
</View>
</View>
))}
Expand Down

0 comments on commit ba0816b

Please sign in to comment.