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