diff --git a/src/components/Dialog/shared.tsx b/src/components/Dialog/shared.tsx index e9fdf50fa7..df4400a70c 100644 --- a/src/components/Dialog/shared.tsx +++ b/src/components/Dialog/shared.tsx @@ -62,7 +62,7 @@ export function HeaderText({ style?: StyleProp }) { return ( - + {children} ) diff --git a/src/components/dialogs/lists/CreateOrEditListDialog.tsx b/src/components/dialogs/lists/CreateOrEditListDialog.tsx index 5045853f6e..c3d044cf91 100644 --- a/src/components/dialogs/lists/CreateOrEditListDialog.tsx +++ b/src/components/dialogs/lists/CreateOrEditListDialog.tsx @@ -349,6 +349,14 @@ function DialogInner({ ? _(msg`Create user list`) : _(msg`Create moderation list`) + const displayNamePlaceholder = isCurateList + ? _(msg`e.g. Great Posters`) + : _(msg`e.g. Spammers`) + + const descriptionPlaceholder = isCurateList + ? _(msg`e.g. The posters who never miss.`) + : _(msg`e.g. Users that repeatedly reply with ads.`) + return ( @@ -426,7 +434,7 @@ function DialogInner({ onChangeText={onChangeDescription} multiline label={_(msg`Description`)} - placeholder={_(msg`e.g. The posters that never miss.`)} + placeholder={descriptionPlaceholder} testID="editProfileDescriptionInput" />