diff --git a/src/lib/moderation/useGlobalLabelStrings.ts b/src/lib/moderation/useGlobalLabelStrings.ts
index a386bf3f9c..1c5a482314 100644
--- a/src/lib/moderation/useGlobalLabelStrings.ts
+++ b/src/lib/moderation/useGlobalLabelStrings.ts
@@ -44,9 +44,7 @@ export function useGlobalLabelStrings(): GlobalLabelStrings {
},
'graphic-media': {
name: _(msg`Graphic Media`),
- description: _(
- msg`Explicit or potentially disturbing media, including graphic violence, severe injuries, or other visuals that may be shocking or upsetting to some viewers.`,
- ),
+ description: _(msg`Explicit or potentially disturbing media.`),
},
}),
[_],
diff --git a/src/screens/Moderation/index.tsx b/src/screens/Moderation/index.tsx
index 0291d361c0..f604a3aa49 100644
--- a/src/screens/Moderation/index.tsx
+++ b/src/screens/Moderation/index.tsx
@@ -283,117 +283,93 @@ export function ModerationScreenInner({
- {ageNotSet || !isUnderage ? (
- <>
-
- Content filters
-
+
+ Content filters
+
-
- {ageNotSet ? (
- <>
-
-
- Confirm your age:
-
-
-
- >
- ) : (
- <>
-
-
-
- Enable adult content
-
-
+ {ageNotSet && (
+
+ )}
+
+ {!ageNotSet && !isUnderage && (
+ <>
+
+
+ Enable adult content
+
+
+
+
+ {adultContentEnabled ? (
+ Enabled
+ ) : (
+ Disabled
)}
- name="adultContent"
- value={adultContentEnabled}
- onChange={onToggleAdultContentEnabled}>
-
-
- {adultContentEnabled ? (
- Enabled
- ) : (
- Disabled
- )}
-
-
-
-
+
+
- {adultContentEnabled && (
- <>
-
-
-
-
-
-
- >
- )}
-
-
-
- >
- )}
-
- >
- ) : null}
+
+
+
+ >
+ )}
+ {!isUnderage && adultContentEnabled && (
+ <>
+
+
+
+
+
+
+ >
+ )}
+
+
+