Update NoFollowingFeed.tsx

This commit is contained in:
Minseo Lee
2024-05-11 14:47:54 +09:00
parent 646c3834da
commit faf615a660
+11 -3
View File
@@ -33,9 +33,15 @@ export function NoFollowingFeed() {
return ( return (
<View style={[a.flex_row, a.flex_wrap, a.align_center, a.py_md, a.px_lg]}> <View style={[a.flex_row, a.flex_wrap, a.align_center, a.py_md, a.px_lg]}>
<Text>
<Trans>
<Text <Text
style={[a.leading_snug, t.atoms.text_contrast_medium, {maxWidth: 310}]}> style={[
<Trans>Looks like you're missing a following feed.</Trans>{' '} a.leading_snug,
t.atoms.text_contrast_medium,
{maxWidth: 310},
]}>
Looks like you're missing a following feed.{' '}
</Text> </Text>
<InlineLinkText <InlineLinkText
@@ -43,8 +49,10 @@ export function NoFollowingFeed() {
label={_(msg`Add the default feed of only people you follow`)} label={_(msg`Add the default feed of only people you follow`)}
onPress={addRecommendedFeeds} onPress={addRecommendedFeeds}
style={[a.leading_snug]}> style={[a.leading_snug]}>
<Trans>Click here to add one.</Trans> Click here to add one.
</InlineLinkText> </InlineLinkText>
</Trans>
</Text>
</View> </View>
) )
} }