diff options
author | Markus Amalthea Magnuson <markus@polyscopic.works> | 2023-06-13 20:35:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-13 11:35:13 -0700 |
commit | c060cd4158a9d5cb8b5d8e42a7168c90e28ea845 (patch) | |
tree | a0e6ad627367f94e5977103ef58d142261e0312c /src/view/com/modals/CreateOrEditMuteList.tsx | |
parent | 37782ae60b250c0af260b3c1e2f0877a8f8f2359 (diff) | |
download | voidsky-c060cd4158a9d5cb8b5d8e42a7168c90e28ea845.tar.zst |
Various case and text fixes. (#757)
* Various case and text fixes. * Update some labels per requested changes. --------- Co-authored-by: Ansh <anshnanda10@gmail.com>
Diffstat (limited to 'src/view/com/modals/CreateOrEditMuteList.tsx')
-rw-r--r-- | src/view/com/modals/CreateOrEditMuteList.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/view/com/modals/CreateOrEditMuteList.tsx b/src/view/com/modals/CreateOrEditMuteList.tsx index 5e5130b3c..7984ea64c 100644 --- a/src/view/com/modals/CreateOrEditMuteList.tsx +++ b/src/view/com/modals/CreateOrEditMuteList.tsx @@ -157,7 +157,7 @@ export function Component({ <TextInput testID="editNameInput" style={[styles.textInput, pal.border, pal.text]} - placeholder="e.g. Spammers" + placeholder="e.g. spammers" placeholderTextColor={colors.gray4} value={name} onChangeText={v => setName(enforceLen(v, MAX_NAME))} @@ -174,7 +174,7 @@ export function Component({ <TextInput testID="editDescriptionInput" style={[styles.textArea, pal.border, pal.text]} - placeholder="e.g. Users that repeatedly reply with ads." + placeholder="e.g. users that repeatedly reply with ads." placeholderTextColor={colors.gray4} keyboardAppearance={theme.colorScheme} multiline |