@@ -43,10 +43,10 @@ const UserProfileView = ({ id }: UserProfileViewProps) => {
4343 GLOBAL_CONSTANTS . SUBSCRIPTION_POLICY_ADDRESS ,
4444 session ?. address as Address
4545 ) ;
46- const [ loadProfile , { data : profileData , loading : profileDataLoading } ] = useGetUserLazyQuery ( { fetchPolicy : 'cache-and-network' } ) ;
47- const [ loadPublications , { data : profilePublications , loading : profilePublicationsLoading } ] = useGetPostsByAuthorLazyQuery ( { fetchPolicy : 'cache-and-network' } ) ;
48- const [ loadFollowers , { data : profileFollowers , loading : profileFollowersLoading } ] = useGetUserFollowersLazyQuery ( { fetchPolicy : 'cache-and-network' } ) ;
49- const [ loadFollowing , { data : profileFollowing , loading : profileFollowingLoading } ] = useGetUserFollowingLazyQuery ( { fetchPolicy : 'cache-and-network' } ) ;
46+ const [ loadProfile , { data : profileData , loading : profileDataLoading } ] = useGetUserLazyQuery ( ) ;
47+ const [ loadPublications , { data : profilePublications , loading : profilePublicationsLoading } ] = useGetPostsByAuthorLazyQuery ( ) ;
48+ const [ loadFollowers , { data : profileFollowers , loading : profileFollowersLoading } ] = useGetUserFollowersLazyQuery ( ) ;
49+ const [ loadFollowing , { data : profileFollowing , loading : profileFollowingLoading } ] = useGetUserFollowingLazyQuery ( ) ;
5050 const { invitations : referrals , fetchInvitations, loading : loadingReferrals } = useReferrals ( ) ;
5151 const followersStore = useSelector ( ( state : RootState ) => state . followers . followers ) ;
5252 const followingsStore = useSelector ( ( state : RootState ) => state . followers . followings ) ;
0 commit comments