Skip to content

Commit

Permalink
fix type error
Browse files Browse the repository at this point in the history
  • Loading branch information
etCoderDysto committed Aug 21, 2024
1 parent b137852 commit 0404bf1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ReportActionItem/MoneyRequestView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -518,7 +518,7 @@ function MoneyRequestView({
)}
{!shouldShowReceiptEmptyState && !hasReceipt && <View style={{marginVertical: 6}} />}
{shouldShowAuditMessage && <ReceiptAuditMessages notes={receiptImageViolations} />}
<OfflineWithFeedback pendingAction={getPendingFieldAction('amount') ?? (amountTitle && getPendingFieldAction('customUnitRateID'))}>
<OfflineWithFeedback pendingAction={getPendingFieldAction('amount') ?? (amountTitle ? getPendingFieldAction('customUnitRateID') : undefined)}>
<MenuItemWithTopDescription
title={amountTitle}
shouldShowTitleIcon={isSettled}
Expand Down

0 comments on commit 0404bf1

Please sign in to comment.