We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2dc5fa commit 26b0ef7Copy full SHA for 26b0ef7
src/containers/post/PostViewer.tsx
@@ -388,7 +388,7 @@ const PostViewer: React.FC<PostViewerProps> = ({
388
/>
389
</UserProfileWrapper>
390
<LinkedPostList linkedPosts={post.linked_posts} />
391
- {showRecommends && userId === null && (
+ {showRecommends && userId === null && !isVeryOld && (
392
<RelatedPostsForGuest
393
postId={post.id}
394
showAds={
@@ -404,7 +404,7 @@ const PostViewer: React.FC<PostViewerProps> = ({
404
comments={post.comments}
405
406
407
- {showRecommends && userId !== null && (
+ {showRecommends && (userId !== null || isVeryOld) && (
408
<RelatedPost
409
410
0 commit comments