Skip to content

Commit

Permalink
Merge pull request Expensify#27692 from getusha/fix-27684
Browse files Browse the repository at this point in the history
Fix missing margin between name and request money preview box
  • Loading branch information
bondydaa authored Sep 19, 2023
2 parents 0603fe1 + b27a90f commit ee6fe52
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/ReportActionItem/MoneyRequestPreview.js
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ function MoneyRequestPreview(props) {
errorRowStyles={[styles.mbn1]}
needsOffscreenAlphaCompositing
>
<View style={[styles.moneyRequestPreviewBox, isScanning || props.isWhisper ? styles.reportPreviewBoxHoverBorder : undefined, ...props.containerStyles]}>
<View style={[isScanning || props.isWhisper ? styles.reportPreviewBoxHoverBorder : undefined]}>
{hasReceipt && (
<ReportActionItemImages
images={receiptImages}
Expand Down Expand Up @@ -339,7 +339,7 @@ function MoneyRequestPreview(props) {
onLongPress={showContextMenu}
accessibilityLabel={props.isBillSplit ? props.translate('iou.split') : props.translate('iou.cash')}
accessibilityHint={CurrencyUtils.convertToDisplayString(requestAmount, requestCurrency)}
style={styles.moneyRequestPreviewBox}
style={[styles.moneyRequestPreviewBox, ...props.containerStyles]}
>
{childContainer}
</PressableWithFeedback>
Expand Down

0 comments on commit ee6fe52

Please sign in to comment.