about summary refs log tree commit diff
path: root/src/screens/Feeds/NoFollowingFeed.tsx
diff options
context:
space:
mode:
authorMinseo Lee <itoupluk427@gmail.com>2024-05-15 14:44:59 +0900
committerGitHub <noreply@github.com>2024-05-14 22:44:59 -0700
commit2121b5f86f5229914256c7a818086aaaf4c3581a (patch)
tree62479f95b991497dab097f3642c0ef1a800276c4 /src/screens/Feeds/NoFollowingFeed.tsx
parenta90cc1c030e3213ca4359052d5a4fe46c11627e5 (diff)
downloadvoidsky-2121b5f86f5229914256c7a818086aaaf4c3581a.tar.zst
Make more localizable (#3962)
* Update ProfileList.tsx

* Update NoFollowingFeed.tsx

* Update LabelsOnMeDialog.tsx

* Update LabelsOnMeDialog.tsx

* Update NoFollowingFeed.tsx

* Update SavedFeeds.tsx

* Revert "Update SavedFeeds.tsx"

This reverts commit db128eb27d76d27dffa87e0e70e34f603da75778.
Diffstat (limited to 'src/screens/Feeds/NoFollowingFeed.tsx')
-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>
   )
 }