File tree Expand file tree Collapse file tree
src/pages/settings/Profile/PersonalDetails Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import React , { useCallback } from 'react' ;
2+ import { View } from 'react-native' ;
3+ import ActivityIndicator from '@components/ActivityIndicator' ;
24import DelegateNoAccessWrapper from '@components/DelegateNoAccessWrapper' ;
35import FormProvider from '@components/Form/FormProvider' ;
46import InputWrapper from '@components/Form/InputWrapper' ;
57import type { FormInputErrors , FormOnyxValues } from '@components/Form/types' ;
6- import FullscreenLoadingIndicator from '@components/FullscreenLoadingIndicator' ;
78import HeaderWithBackButton from '@components/HeaderWithBackButton' ;
89import OfflineWithFeedback from '@components/OfflineWithFeedback' ;
910import ScreenWrapper from '@components/ScreenWrapper' ;
@@ -87,10 +88,12 @@ function PhoneNumberPage() {
8788 onBackButtonPress = { ( ) => Navigation . goBack ( ) }
8889 />
8990 { isLoadingApp ? (
90- < FullscreenLoadingIndicator
91- style = { [ styles . flex1 , styles . pRelative ] }
92- reasonAttributes = { { context : 'PhoneNumberPage' , isLoadingApp} satisfies SkeletonSpanReasonAttributes }
93- />
91+ < View style = { [ styles . flex1 , styles . fullScreenLoading ] } >
92+ < ActivityIndicator
93+ size = { CONST . ACTIVITY_INDICATOR_SIZE . LARGE }
94+ reasonAttributes = { { context : 'PhoneNumberPage' , isLoadingApp} satisfies SkeletonSpanReasonAttributes }
95+ />
96+ </ View >
9497 ) : (
9598 < FormProvider
9699 style = { [ styles . flexGrow1 , styles . ph5 ] }
You can’t perform that action at this time.
0 commit comments