Clean up leading after new default
This commit is contained in:
@@ -328,7 +328,7 @@ let PostThreadItemLoaded = ({
|
||||
]}>
|
||||
<RichText
|
||||
value={richText}
|
||||
style={[a.flex_1, a.leading_snug, a.text_xl]}
|
||||
style={[a.flex_1, a.text_xl]}
|
||||
selectable
|
||||
/>
|
||||
</View>
|
||||
@@ -522,7 +522,7 @@ let PostThreadItemLoaded = ({
|
||||
<View style={styles.postTextContainer}>
|
||||
<RichText
|
||||
value={richText}
|
||||
style={[a.flex_1, a.leading_snug, a.text_md]}
|
||||
style={[a.flex_1, a.text_md]}
|
||||
numberOfLines={limitLines ? MAX_POST_LINES : undefined}
|
||||
/>
|
||||
</View>
|
||||
|
||||
@@ -350,7 +350,7 @@ let PostContent = ({
|
||||
testID="postText"
|
||||
value={richText}
|
||||
numberOfLines={limitLines ? MAX_POST_LINES : undefined}
|
||||
style={[a.flex_1, a.leading_snug, a.text_md]}
|
||||
style={[a.flex_1, a.text_md]}
|
||||
/>
|
||||
</View>
|
||||
) : undefined}
|
||||
|
||||
@@ -612,7 +612,7 @@ let ProfileHeader = ({
|
||||
<View pointerEvents="auto" style={[styles.description]}>
|
||||
<RichText
|
||||
testID="profileHeaderDescription"
|
||||
style={[a.text_md, a.leading_snug]}
|
||||
style={[a.text_md]}
|
||||
numberOfLines={15}
|
||||
value={descriptionRT}
|
||||
/>
|
||||
|
||||
@@ -576,7 +576,7 @@ function AboutSection({
|
||||
{feedInfo.description ? (
|
||||
<RichText
|
||||
testID="listDescription"
|
||||
style={[a.text_md, a.leading_snug]}
|
||||
style={[a.text_md]}
|
||||
value={feedInfo.description}
|
||||
/>
|
||||
) : (
|
||||
|
||||
@@ -743,7 +743,7 @@ const AboutSection = React.forwardRef<SectionRef, AboutSectionProps>(
|
||||
{descriptionRT ? (
|
||||
<RichText
|
||||
testID="listDescription"
|
||||
style={[a.text_md, a.leading_snug]}
|
||||
style={[a.text_md]}
|
||||
value={descriptionRT}
|
||||
/>
|
||||
) : (
|
||||
|
||||
Reference in New Issue
Block a user