File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -163,7 +163,7 @@ const useLeaderboard = () => {
163163 state : followState ,
164164 isLoading : followState
165165 ? isRefetchingFollowStates
166- : isFollowStatesLoading || isFetchingNextFollowStatesPage || isRefetchingFollowStates ,
166+ : isFollowStatesLoading || isFetchingNextFollowStatesPage ,
167167 } ,
168168 }
169169 } )
Original file line number Diff line number Diff line change @@ -110,7 +110,7 @@ export const useBatchButtonStateQuery = <T extends { address: string }>({
110110 const profilesWithFollowStates = useMemo ( ( ) => {
111111 return profiles . map ( ( profile , index ) => {
112112 const followState = followStatesMap . get ( profile . address . toLowerCase ( ) ) as FollowStateResponse
113- const isLoading = followState ? isRefetchingFollowStates : true
113+ const isLoading = followState ? isRefetchingFollowStates : ( isFollowStatesLoading || isFetchingNextFollowStatesPage )
114114
115115 return {
116116 ...profile ,
You can’t perform that action at this time.
0 commit comments