Skip to content

Commit

Permalink
Merge pull request #36841 from mkhutornyi/fix-36831
Browse files Browse the repository at this point in the history
fix crash when saving a reason during hold request flow

(cherry picked from commit 0c4cd6c)
  • Loading branch information
techievivek authored and OSBotify committed Feb 20, 2024
1 parent 4c6473c commit 7d8a463
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/ProcessMoneyRequestHoldMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ function ProcessMoneyRequestHoldMenu({isVisible, onClose, onConfirm, anchorPosit
<View style={[styles.mh5, styles.mv5]}>
<View style={[styles.flexRow, styles.alignItemsCenter, styles.mb5]}>
<Text style={[styles.textHeadline, styles.mr2]}>{translate('iou.holdEducationalTitle')}</Text>
<TextPill textStyles={styles.holdRequestInline}>{translate('iou.hold')}</TextPill>;
<TextPill textStyles={styles.holdRequestInline}>{translate('iou.hold')}</TextPill>
</View>
<HoldMenuSectionList />
<Button
Expand Down
2 changes: 1 addition & 1 deletion src/pages/ProcessMoneyRequestHoldPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ function ProcessMoneyRequestHoldPage() {
<View style={[styles.mh5, styles.flex1]}>
<View style={[styles.flexRow, styles.alignItemsCenter, styles.mb5]}>
<Text style={[styles.textHeadline, styles.mr2]}>{translate('iou.holdEducationalTitle')}</Text>
<TextPill textStyles={styles.holdRequestInline}>{translate('iou.hold')}</TextPill>;
<TextPill textStyles={styles.holdRequestInline}>{translate('iou.hold')}</TextPill>
</View>
<HoldMenuSectionList />
</View>
Expand Down

0 comments on commit 7d8a463

Please sign in to comment.