Skip to content

Commit

Permalink
Fix new schema
Browse files Browse the repository at this point in the history
  • Loading branch information
johnmlee101 committed Feb 3, 2025
1 parent 23b8c93 commit a45b1a0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/pages/tasks/NewTaskDetailsPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ function NewTaskDetailsPage({route}: NewTaskDetailsPageProps) {
value={Parser.htmlToMarkdown(Parser.replace(taskTitle))}
onValueChange={setTaskTitle}
autoCorrect={false}
isMarkdownEnabled
type="markdown"
/>
</View>
<View style={styles.mb5}>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/tasks/NewTaskTitlePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ function NewTaskTitlePage({route}: NewTaskTitlePageProps) {
label={translate('task.title')}
accessibilityLabel={translate('task.title')}
autoGrowHeight
isMarkdownEnabled
type="markdown"
maxAutoGrowHeight={variables.textInputAutoGrowMaxHeight}
/>
</View>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/tasks/TaskTitlePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ function TaskTitlePage({report, currentUserPersonalDetails}: TaskTitlePageProps)
shouldSubmitForm={false}
autoGrowHeight
maxAutoGrowHeight={variables.textInputAutoGrowMaxHeight}
isMarkdownEnabled
type="markdown"
ref={(element: AnimatedTextInputRef) => {
if (!element) {
return;
Expand Down

0 comments on commit a45b1a0

Please sign in to comment.