mobile: improve notebook sheet wording

This commit is contained in:
Ammar Ahmed
2024-03-06 10:44:32 +05:00
committed by Abdullah Atta
parent d9d229b020
commit d18a8742f1

View File

@@ -129,7 +129,7 @@ export const AddNotebookSheet = ({
titleInput?.current?.focus();
});
}}
placeholder="Enter a title"
placeholder="Enter notebook title"
onSubmit={() => {
descriptionInput.current?.focus();
}}
@@ -144,7 +144,7 @@ export const AddNotebookSheet = ({
onChangeText={(value) => {
description.current = value;
}}
placeholder="Describe your notebook."
placeholder="Enter notebook description"
returnKeyLabel="Next"
returnKeyType="next"
defaultValue={notebook ? notebook.description : ""}