Skip to content

Commit

Permalink
Merge pull request #25684 from s-alves10/fix/issue-25640
Browse files Browse the repository at this point in the history
fix: don't show merchant info for split bill
(cherry picked from commit de275c4)
  • Loading branch information
robertjchen authored and OSBotify committed Aug 22, 2023
1 parent e9fd9be commit 8850d5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ReportActionItem/MoneyRequestPreview.js
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ function MoneyRequestPreview(props) {
</View>
)}
</View>
{!_.isEmpty(requestMerchant) && (
{!props.isBillSplit && !_.isEmpty(requestMerchant) && (
<View style={[styles.flexRow]}>
<Text style={[styles.textLabelSupporting, styles.mb1, styles.lh16]}>{requestMerchant}</Text>
</View>
Expand Down

0 comments on commit 8850d5a

Please sign in to comment.