diff --git a/src/pages/iou/IOUCurrencySelection.js b/src/pages/iou/IOUCurrencySelection.js index 20344a08a2c8..eab9ab5a7510 100644 --- a/src/pages/iou/IOUCurrencySelection.js +++ b/src/pages/iou/IOUCurrencySelection.js @@ -157,20 +157,29 @@ function IOUCurrencySelection(props) { onEntryTransitionEnd={() => optionsSelectorRef.current && optionsSelectorRef.current.focus()} testID={IOUCurrencySelection.displayName} > - Navigation.goBack(ROUTES.MONEY_REQUEST.getRoute(iouType, reportID))} - /> - + {({didScreenTransitionEnd}) => ( + <> + Navigation.goBack(ROUTES.MONEY_REQUEST.getRoute(iouType, reportID))} + /> + { + if (!didScreenTransitionEnd) { + return; + } + confirmCurrencySelection(option); + }} + headerMessage={headerMessage} + initiallyFocusedOptionKey={initiallyFocusedOptionKey} + showScrollIndicator + /> + + )} ); }