about summary refs log tree commit diff
path: root/src/screens
diff options
context:
space:
mode:
Diffstat (limited to 'src/screens')
-rw-r--r--src/screens/Feeds/NoFollowingFeed.tsx22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/screens/Feeds/NoFollowingFeed.tsx b/src/screens/Feeds/NoFollowingFeed.tsx
index 03ced8ebd..fa48cca72 100644
--- a/src/screens/Feeds/NoFollowingFeed.tsx
+++ b/src/screens/Feeds/NoFollowingFeed.tsx
@@ -33,18 +33,18 @@ export function NoFollowingFeed() {
 
   return (
     <View style={[a.flex_row, a.flex_wrap, a.align_center, a.py_md, a.px_lg]}>
-      <Text
-        style={[a.leading_snug, t.atoms.text_contrast_medium, {maxWidth: 310}]}>
-        <Trans>Looks like you're missing a following feed.</Trans>{' '}
+      <Text style={[a.leading_snug, t.atoms.text_contrast_medium]}>
+        <Trans>
+          Looks like you're missing a following feed.{' '}
+          <InlineLinkText
+            to="/"
+            label={_(msg`Add the default feed of only people you follow`)}
+            onPress={addRecommendedFeeds}
+            style={[a.leading_snug]}>
+            Click here to add one.
+          </InlineLinkText>
+        </Trans>
       </Text>
-
-      <InlineLinkText
-        to="/"
-        label={_(msg`Add the default feed of only people you follow`)}
-        onPress={addRecommendedFeeds}
-        style={[a.leading_snug]}>
-        <Trans>Click here to add one.</Trans>
-      </InlineLinkText>
     </View>
   )
 }