From dc68b44933008c2e319e2688552dd2557a97b50e Mon Sep 17 00:00:00 2001 From: MohamedBassem Date: Sat, 24 Aug 2024 17:41:43 +0300 Subject: fix(mobile): Change the next note text input to have multiple lines by default --- apps/mobile/app/dashboard/add-note.tsx | 2 ++ 1 file changed, 2 insertions(+) (limited to 'apps') diff --git a/apps/mobile/app/dashboard/add-note.tsx b/apps/mobile/app/dashboard/add-note.tsx index 6b8f0fef..62296fd4 100644 --- a/apps/mobile/app/dashboard/add-note.tsx +++ b/apps/mobile/app/dashboard/add-note.tsx @@ -44,8 +44,10 @@ export default function AddNote() { value={text} onChangeText={setText} multiline + numberOfLines={8} placeholder="What's on your mind?" autoFocus + textAlignVertical="top" />