36 lines
1.1 KiB
Diff
36 lines
1.1 KiB
Diff
diff --git a/src/view/com/posts/PostFeedItem.tsx b/src/view/com/posts/PostFeedItem.tsx
|
|
--- a/src/view/com/posts/PostFeedItem.tsx
|
|
+++ b/src/view/com/posts/PostFeedItem.tsx
|
|
@@ -385,17 +385,19 @@
|
|
threadgateRecord={threadgateRecord}
|
|
/>
|
|
- <PostControls
|
|
- post={post}
|
|
- record={record}
|
|
- richText={richText}
|
|
- onPressReply={onPressReply}
|
|
- logContext="FeedItem"
|
|
- feedContext={feedContext}
|
|
- reqId={reqId}
|
|
- threadgateRecord={threadgateRecord}
|
|
- onShowLess={onShowLess}
|
|
- viaRepost={viaRepost}
|
|
- />
|
|
+ {false && (
|
|
+ <PostControls
|
|
+ post={post}
|
|
+ record={record}
|
|
+ richText={richText}
|
|
+ onPressReply={onPressReply}
|
|
+ logContext="FeedItem"
|
|
+ feedContext={feedContext}
|
|
+ reqId={reqId}
|
|
+ threadgateRecord={threadgateRecord}
|
|
+ onShowLess={onShowLess}
|
|
+ viaRepost={viaRepost}
|
|
+ />
|
|
+ )}
|
|
</View>
|
|
|
|
<DiscoverDebug feedContext={feedContext} />
|