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
  • Loading branch information
robertjchen authored Aug 22, 2023
2 parents 7b5fadf + fc41bb2 commit de275c4
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 de275c4

Please sign in to comment.