Skip to content

Commit

Permalink
Merge pull request #36586 from shubham1206agra/fix-36077
Browse files Browse the repository at this point in the history
Fixed state reset on going back from amount step
  • Loading branch information
rlinoz authored Feb 19, 2024
2 parents 5b265f3 + 9a9e7c0 commit 85356ce
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/pages/iou/request/step/IOURequestStepConfirmation.js
Original file line number Diff line number Diff line change
Expand Up @@ -417,9 +417,8 @@ function IOURequestStepConfirmation({
},
]}
/>
{isLoading ? (
<FullScreenLoadingIndicator />
) : (
{isLoading && <FullScreenLoadingIndicator />}
<View style={[styles.flex1, isLoading && styles.opacity0]}>
<MoneyRequestConfirmationList
transaction={transaction}
hasMultipleParticipants={iouType === CONST.IOU.TYPE.SPLIT}
Expand Down Expand Up @@ -451,7 +450,7 @@ function IOURequestStepConfirmation({
isDistanceRequest={requestType === CONST.IOU.REQUEST_TYPE.DISTANCE}
shouldShowSmartScanFields={requestType !== CONST.IOU.REQUEST_TYPE.SCAN}
/>
)}
</View>
</View>
)}
</ScreenWrapper>
Expand Down

0 comments on commit 85356ce

Please sign in to comment.