about summary refs log tree commit diff
path: root/src/view/com/posts/FeedItem.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/view/com/posts/FeedItem.tsx')
-rw-r--r--src/view/com/posts/FeedItem.tsx9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/view/com/posts/FeedItem.tsx b/src/view/com/posts/FeedItem.tsx
index ae53c8d16..4d444fea2 100644
--- a/src/view/com/posts/FeedItem.tsx
+++ b/src/view/com/posts/FeedItem.tsx
@@ -16,7 +16,7 @@ import {PostEmbeds} from '../util/PostEmbeds'
 import {RichText} from '../util/text/RichText'
 import * as Toast from '../util/Toast'
 import {UserAvatar} from '../util/UserAvatar'
-import {s, colors, lh} from '../../lib/styles'
+import {s, colors} from '../../lib/styles'
 import {useStores} from '../../../state'
 import {useTheme} from '../../lib/ThemeContext'
 import {usePalette} from '../../lib/hooks/usePalette'
@@ -114,17 +114,14 @@ export const FeedItem = observer(function ({
       <Link style={outerStyles} href={itemHref} title={itemTitle} noFeedback>
         {item._isThreadChild && (
           <View
-            style={[
-              styles.topReplyLine,
-              {borderLeftColor: pal.colors.replyLine},
-            ]}
+            style={[styles.topReplyLine, {borderColor: pal.colors.replyLine}]}
           />
         )}
         {(showReplyLine || item._isThreadParent) && (
           <View
             style={[
               styles.bottomReplyLine,
-              {borderLeftColor: pal.colors.replyLine},
+              {borderColor: pal.colors.replyLine},
               isNoTop ? {top: 64} : undefined,
             ]}
           />