@@ -4,11 +4,11 @@ import React, {useEffect, useRef, useState} from 'react';
44import { FlatList , InteractionManager , View } from 'react-native' ;
55import type { OnyxEntry } from 'react-native-onyx' ;
66import type { ValueOf } from 'type-fest' ;
7+ import ActivityIndicator from '@components/ActivityIndicator' ;
78import ConfirmModal from '@components/ConfirmModal' ;
89import type { DomainItem } from '@components/Domain/DomainMenuItem' ;
910import DomainMenuItem from '@components/Domain/DomainMenuItem' ;
1011import DomainsEmptyStateComponent from '@components/DomainsEmptyStateComponent' ;
11- import FullScreenLoadingIndicator from '@components/FullscreenLoadingIndicator' ;
1212import type { MenuItemProps } from '@components/MenuItem' ;
1313import NavigationTabBar from '@components/Navigation/NavigationTabBar' ;
1414import NAVIGATION_TABS from '@components/Navigation/NavigationTabBar/NAVIGATION_TABS' ;
@@ -738,9 +738,9 @@ function WorkspacesListPage() {
738738 </ TopBarWithLoadingBar >
739739 { shouldUseNarrowLayout && < View style = { [ styles . ph5 , styles . pt2 ] } > { headerButton } </ View > }
740740 { shouldShowLoadingIndicator ? (
741- < View style = { [ styles . flex1 ] } >
742- < FullScreenLoadingIndicator
743- style = { [ styles . flex1 , styles . pRelative ] }
741+ < View style = { [ styles . flex1 , styles . fullScreenLoading ] } >
742+ < ActivityIndicator
743+ size = { CONST . ACTIVITY_INDICATOR_SIZE . LARGE }
744744 reasonAttributes = {
745745 {
746746 context : 'WorkspacesListPage' ,
0 commit comments