Skip to content

Commit

Permalink
add inputMode to MarkdownTextInput (#451)
Browse files Browse the repository at this point in the history
  • Loading branch information
christianwen authored Aug 19, 2024
1 parent 61da827 commit 1e38063
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/MarkdownTextInput.web.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,7 @@ const MarkdownTextInput = React.forwardRef<TextInput, MarkdownTextInputProps>(
autoFocus = false,
onContentSizeChange,
id,
inputMode,
},
ref,
) => {
Expand Down Expand Up @@ -699,6 +700,7 @@ const MarkdownTextInput = React.forwardRef<TextInput, MarkdownTextInputProps>(
placeholder={heightSafePlaceholder}
spellCheck={spellCheck}
dir={dir}
inputMode={inputMode}
/>
);
},
Expand Down

0 comments on commit 1e38063

Please sign in to comment.