diff --git a/src/components/post-desktop/post-desktop.tsx b/src/components/post-desktop/post-desktop.tsx
index bdd6c326..9f7d7f1c 100644
--- a/src/components/post-desktop/post-desktop.tsx
+++ b/src/components/post-desktop/post-desktop.tsx
@@ -440,7 +440,6 @@ const PostInfo = ({
)}
{cid &&
!parentCid &&
- isInPostPageView &&
quotedByMap
?.get(cid)
?.map(
diff --git a/src/components/post-mobile/post-mobile.tsx b/src/components/post-mobile/post-mobile.tsx
index 3040333d..b05a5324 100644
--- a/src/components/post-mobile/post-mobile.tsx
+++ b/src/components/post-mobile/post-mobile.tsx
@@ -380,14 +380,13 @@ const PostMediaContent = ({ post, link }: { post: any; link: string }) => {
);
};
-const ReplyBacklinks = ({ post, quotedByMap, isInPostPageView }: PostProps) => {
+const ReplyBacklinks = ({ post, quotedByMap }: PostProps) => {
const { cid, parentCid } = post || {};
const { replies } = useReplies({ comment: post, flat: true, accountComments: { newerThan: Infinity } });
const opBacklinks =
cid &&
!parentCid &&
- isInPostPageView &&
quotedByMap
?.get(cid)
?.map(
@@ -601,7 +600,7 @@ const PostMobile = ({
{shouldShowSnow() &&
}