Skip to content

Commit

Permalink
Merge pull request #35916 from VickyStash/ts-migration/moneyRequestPr…
Browse files Browse the repository at this point in the history
…eview-crash

[TS Migration] Follow-up PR to fix crash on MoneyRequestPreview
  • Loading branch information
aldo-expensify authored Feb 6, 2024
2 parents 1da7032 + b19b857 commit 8563c0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ReportActionItem/MoneyRequestPreview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ function MoneyRequestPreview({
{shouldShowDescription && <RenderHTML html={parser.replace(merchantOrDescription)} />}
{shouldShowMerchant && <Text style={[styles.textLabelSupporting, styles.textNormal]}>{merchantOrDescription}</Text>}
</View>
{isBillSplit && participantAccountIDs.length > 0 && requestAmount && requestAmount > 0 && (
{isBillSplit && participantAccountIDs.length > 0 && !!requestAmount && requestAmount > 0 && (
<Text style={[styles.textLabel, styles.colorMuted, styles.ml1, styles.amountSplitPadding]}>
{translate('iou.amountEach', {
amount: CurrencyUtils.convertToDisplayString(
Expand Down

0 comments on commit 8563c0f

Please sign in to comment.