diff --git a/src/components/VideoPostCard.tsx b/src/components/VideoPostCard.tsx
index 34c14d787e..3d353dd775 100644
--- a/src/components/VideoPostCard.tsx
+++ b/src/components/VideoPostCard.tsx
@@ -59,6 +59,8 @@ export function VideoPostCard({
onOut: onPressOut,
} = useInteractionState()
+ const listModUi = moderation.ui('contentList')
+
const mergedModui = useMemo(() => {
const modui = moderation.ui('contentList')
const mediaModui = moderation.ui('contentMedia')
@@ -82,6 +84,32 @@ export function VideoPostCard({
const {thumbnail} = embed
const black = getBlackColor(t)
+ const textAndAuthor = (
+
+ {text && (
+
+ {text}
+
+ )}
+
+
+
+
+
+
+ {sanitizeHandle(post.author.handle, '@')}
+
+
+
+ )
+
return (
-
+ {listModUi.blur ? (
+
+ ) : (
+ textAndAuthor
+ )}
-
- {text && (
-
- {text}
-
- )}
-
-
-
-
-
-
- {sanitizeHandle(post.author.handle, '@')}
-
-
-
+ {textAndAuthor}