diff --git a/apps/mobile/app/components/sheets/add-notebook/index.tsx b/apps/mobile/app/components/sheets/add-notebook/index.tsx index 5a0a61f9d..490b62449 100644 --- a/apps/mobile/app/components/sheets/add-notebook/index.tsx +++ b/apps/mobile/app/components/sheets/add-notebook/index.tsx @@ -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 : ""}