diff --git a/src/pages/iou/MoneyRequestModal.js b/src/pages/iou/MoneyRequestModal.js index 6d3e5e3d19b0..b5e979a95dd3 100644 --- a/src/pages/iou/MoneyRequestModal.js +++ b/src/pages/iou/MoneyRequestModal.js @@ -13,7 +13,7 @@ import ONYXKEYS from '../../ONYXKEYS'; import withLocalize, {withLocalizePropTypes} from '../../components/withLocalize'; import compose from '../../libs/compose'; import * as OptionsListUtils from '../../libs/OptionsListUtils'; -import FullScreenLoadingIndicator from '../../components/FullscreenLoadingIndicator'; +// import FullScreenLoadingIndicator from '../../components/FullscreenLoadingIndicator'; import AnimatedStep from '../../components/AnimatedStep'; import ScreenWrapper from '../../components/ScreenWrapper'; import CONST from '../../CONST'; @@ -338,16 +338,17 @@ function MoneyRequestModal(props) { const enableMaxHeight = DeviceCapabilities.canUseTouchScreen() && currentStep === Steps.MoneyRequestParticipants; const bankAccountRoute = ReportUtils.getBankAccountRoute(props.report); + // TODO: investigate the didScreenTransitionEnd being false all the time return ( + {/* eslint-disable-next-line no-unused-vars */} {({didScreenTransitionEnd, safeAreaPaddingBottomStyle}) => ( <> - {!didScreenTransitionEnd && } - {didScreenTransitionEnd && ( + {/* {!didScreenTransitionEnd && } */} <> {currentStep === Steps.MoneyRequestAmount && ( )} - )} + {/* )} */} )}