From effa718b9ccb8d0258d1dcfaf1c0f283449d8d01 Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Wed, 24 Sep 2025 17:34:31 +0300 Subject: [PATCH] fix placeholder text of modlist dialog --- .../dialogs/lists/CreateOrEditListDialog.tsx | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/src/components/dialogs/lists/CreateOrEditListDialog.tsx b/src/components/dialogs/lists/CreateOrEditListDialog.tsx index 5045853f6e..326392a993 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 that 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" />