about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorHailey <me@haileyok.com>2024-03-11 12:57:37 -0700
committerGitHub <noreply@github.com>2024-03-11 12:57:37 -0700
commitc83fe94f416cd91acbdb6918c7065a76c36c9b94 (patch)
tree8138f0c919d983593f614d48de5124b995a8dca7 /src
parent3a6e58ba6ed037d14d7f8a68ec7d97448aa9a5ba (diff)
downloadvoidsky-c83fe94f416cd91acbdb6918c7065a76c36c9b94.tar.zst
Fix onboarding `FeedCard` text overflow (#3176)
Diffstat (limited to 'src')
-rw-r--r--src/screens/Onboarding/StepAlgoFeeds/FeedCard.tsx5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/screens/Onboarding/StepAlgoFeeds/FeedCard.tsx b/src/screens/Onboarding/StepAlgoFeeds/FeedCard.tsx
index dec53d2ed..1123f2675 100644
--- a/src/screens/Onboarding/StepAlgoFeeds/FeedCard.tsx
+++ b/src/screens/Onboarding/StepAlgoFeeds/FeedCard.tsx
@@ -238,13 +238,14 @@ function FeedCardInner({feed}: {feed: FeedSourceInfo; config: FeedConfig}) {
           />
         </View>
 
-        <View style={[a.pt_2xs, a.flex_grow]}>
+        <View style={[a.pt_2xs, a.flex_1, a.flex_grow]}>
           <Text
             style={[
               a.text_md,
               a.font_bold,
               ctx.selected && styles.textSelected,
-            ]}>
+            ]}
+            numberOfLines={1}>
             {feed.displayName}
           </Text>
           <Text