diff options
| author | MohamedBassem <me@mbassem.com> | 2024-08-24 17:41:43 +0300 |
|---|---|---|
| committer | MohamedBassem <me@mbassem.com> | 2024-08-24 18:35:34 +0300 |
| commit | dc68b44933008c2e319e2688552dd2557a97b50e (patch) | |
| tree | 72cb432edbdf5eff1d3aa80a664a79b987c6f084 /apps | |
| parent | 809a9bc35ad4b975dbd4eacc5c6aa8ab285b6d9a (diff) | |
| download | karakeep-dc68b44933008c2e319e2688552dd2557a97b50e.tar.zst | |
fix(mobile): Change the next note text input to have multiple lines by default
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/mobile/app/dashboard/add-note.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
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" /> <Button onPress={() => mutate({ type: BookmarkTypes.TEXT, text })} |
