diff options
Diffstat (limited to 'src/view/com/lists')
-rw-r--r-- | src/view/com/lists/ProfileLists.tsx | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/src/view/com/lists/ProfileLists.tsx b/src/view/com/lists/ProfileLists.tsx index 63c23fcaf..95cf8fde6 100644 --- a/src/view/com/lists/ProfileLists.tsx +++ b/src/view/com/lists/ProfileLists.tsx @@ -1,6 +1,5 @@ import React, {MutableRefObject} from 'react' import { - ActivityIndicator, Dimensions, RefreshControl, StyleProp, @@ -23,6 +22,7 @@ import {Trans} from '@lingui/macro' import {cleanError} from '#/lib/strings/errors' import {useAnimatedScrollHandler} from 'react-native-reanimated' import {useTheme} from '#/lib/ThemeContext' +import {FeedLoadingPlaceholder} from '#/view/com/util/LoadingPlaceholder' const LOADING = {_reactKey: '__loading__'} const EMPTY = {_reactKey: '__empty__'} @@ -170,11 +170,7 @@ export const ProfileLists = React.forwardRef<SectionRef, ProfileListsProps>( /> ) } else if (item === LOADING) { - return ( - <View style={{padding: 20}}> - <ActivityIndicator /> - </View> - ) + return <FeedLoadingPlaceholder /> } return ( <ListCard @@ -226,6 +222,5 @@ export const ProfileLists = React.forwardRef<SectionRef, ProfileListsProps>( const styles = StyleSheet.create({ item: { paddingHorizontal: 18, - paddingVertical: 4, }, }) |