From 721fee6d202332818beb90ac3d821bdbec241fd5 Mon Sep 17 00:00:00 2001 From: Pouria Delfanazari Date: Thu, 7 Mar 2024 16:02:17 -0800 Subject: [PATCH] Put not found and blocked embeds after post content This follows the correct order. --- .../dataDisplay/postEmbed/RecordEmbed.tsx | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/components/dataDisplay/postEmbed/RecordEmbed.tsx b/src/components/dataDisplay/postEmbed/RecordEmbed.tsx index 53ea72e2..90057bfc 100644 --- a/src/components/dataDisplay/postEmbed/RecordEmbed.tsx +++ b/src/components/dataDisplay/postEmbed/RecordEmbed.tsx @@ -23,16 +23,6 @@ export default function RecordEmbed(props: Props) { return (
- {isBlocked && ( -
- -
- )} - {notFound && ( -
- -
- )} {media && } {isViewable && depth < 1 && (
)} + {isBlocked && ( +
+ +
+ )} + {notFound && ( +
+ +
+ )}
); }