about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2024-01-10 22:51:54 -0800
committerGitHub <noreply@github.com>2024-01-10 22:51:54 -0800
commitce1e6518a29392728a0418bf82d3a7b07e695a5e (patch)
treede7db4c8174912f758557731d1f089ec37233e49
parent6ec6d522e85fc8c84bb88a7ee377fb934de83dc3 (diff)
downloadvoidsky-ce1e6518a29392728a0418bf82d3a7b07e695a5e.tar.zst
Increase the number of lines for quote posts from 6 to 20 (#2489)
-rw-r--r--src/view/com/util/post-embeds/QuoteEmbed.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/com/util/post-embeds/QuoteEmbed.tsx b/src/view/com/util/post-embeds/QuoteEmbed.tsx
index e4a091e04..e5fe44c4d 100644
--- a/src/view/com/util/post-embeds/QuoteEmbed.tsx
+++ b/src/view/com/util/post-embeds/QuoteEmbed.tsx
@@ -118,7 +118,7 @@ export function QuoteEmbed({
         <PostAlerts moderation={moderation} style={styles.alert} />
       ) : null}
       {!isEmpty ? (
-        <Text type="post-text" style={pal.text} numberOfLines={6}>
+        <Text type="post-text" style={pal.text} numberOfLines={20}>
           {quote.text}
         </Text>
       ) : null}