File tree 1 file changed +4
-2
lines changed
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ import FullScreenLoadingIndicator from '../../components/FullscreenLoadingIndica
20
20
import ScreenWrapper from '../../components/ScreenWrapper' ;
21
21
import CONST from '../../CONST' ;
22
22
import KeyboardAvoidingView from '../../components/KeyboardAvoidingView' ;
23
+ import * as PersonalDetails from '../../libs/actions/PersonalDetails' ;
23
24
24
25
/**
25
26
* IOU modal for requesting money and splitting bills.
@@ -129,6 +130,7 @@ class IOUModal extends Component {
129
130
}
130
131
131
132
componentDidMount ( ) {
133
+ PersonalDetails . fetchLocalCurrency ( ) ;
132
134
setIOUSelectedCurrency ( this . props . myPersonalDetails . localCurrencyCode ) ;
133
135
}
134
136
@@ -287,9 +289,9 @@ class IOUModal extends Component {
287
289
</ View >
288
290
< View style = { [ styles . pRelative , styles . flex1 ] } >
289
291
< FullScreenLoadingIndicator
290
- visible = { ! didScreenTransitionEnd || this . props . iou . isRetrievingCurrency }
292
+ visible = { ! didScreenTransitionEnd }
291
293
/>
292
- { didScreenTransitionEnd && ! this . props . iou . isRetrievingCurrency && (
294
+ { didScreenTransitionEnd && (
293
295
< >
294
296
{ currentStep === Steps . IOUAmount && (
295
297
< IOUAmountPage
You can’t perform that action at this time.
0 commit comments