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
  • Loading branch information
techievivek authored Feb 20, 2024
2 parents a824e96 + 729593d commit 0c4cd6c
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 0c4cd6c

Please sign in to comment.