diff options
author | dan <dan.abramov@gmail.com> | 2024-01-24 23:01:22 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-24 23:01:22 +0000 |
commit | c2733bc2c00d0a4cc79e3dc9436ae5950cc2ff61 (patch) | |
tree | 060618ee750472efed921f076d68a5efffe21a77 /src/view/com/profile/ProfileFollows.tsx | |
parent | 9ff74ff30ac2d9e9bf461267a408442e616882c2 (diff) | |
download | voidsky-c2733bc2c00d0a4cc79e3dc9436ae5950cc2ff61.tar.zst |
Use consistent spinners for loading screens (#2611)
* Use consistent spinners for loading screens * Consolidate into LoadingScreen
Diffstat (limited to 'src/view/com/profile/ProfileFollows.tsx')
-rw-r--r-- | src/view/com/profile/ProfileFollows.tsx | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/view/com/profile/ProfileFollows.tsx b/src/view/com/profile/ProfileFollows.tsx index 091922dd9..bd4af1081 100644 --- a/src/view/com/profile/ProfileFollows.tsx +++ b/src/view/com/profile/ProfileFollows.tsx @@ -2,6 +2,7 @@ import React from 'react' import {ActivityIndicator, StyleSheet, View} from 'react-native' import {AppBskyActorDefs as ActorDefs} from '@atproto/api' import {CenteredView} from '../util/Views' +import {LoadingScreen} from '../util/LoadingScreen' import {List} from '../util/List' import {ErrorMessage} from '../util/error/ErrorMessage' import {ProfileCardWithFollowBtn} from './ProfileCard' @@ -62,11 +63,7 @@ export function ProfileFollows({name}: {name: string}) { ) if (isFetchingDid || !isFetched) { - return ( - <CenteredView> - <ActivityIndicator /> - </CenteredView> - ) + return <LoadingScreen /> } // error |