zio/stable
Hailey 2024-01-29 18:44:19 -08:00
parent 30b06c1d9e
commit c5c3f6dbe5
1 changed files with 2 additions and 2 deletions

View File

@ -27,12 +27,12 @@ export function Component({did}: {did: string}) {
data: profile,
error: profileError,
refetch: refetchProfile,
isLoading,
isLoading: isLoadingProfile,
} = useProfileQuery({
did: did,
})
if (isLoading || !moderationOpts) {
if (isLoadingProfile || !moderationOpts) {
return (
<CenteredView style={[pal.view, s.flex1]}>
<ProfileHeader