From d18a8742f145947740f9667d993cb5068090b99e Mon Sep 17 00:00:00 2001 From: Ammar Ahmed Date: Wed, 6 Mar 2024 10:44:32 +0500 Subject: [PATCH] mobile: improve notebook sheet wording --- apps/mobile/app/components/sheets/add-notebook/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 : ""}