diff --git a/packages/commonwealth/client/scripts/views/components/user/fullUser.tsx b/packages/commonwealth/client/scripts/views/components/user/fullUser.tsx index b2cb4681f60..b3136c467a2 100644 --- a/packages/commonwealth/client/scripts/views/components/user/fullUser.tsx +++ b/packages/commonwealth/client/scripts/views/components/user/fullUser.tsx @@ -44,13 +44,12 @@ export const FullUser = ({ const loggedInUser = useUserStore(); const [isModalOpen, setIsModalOpen] = useState(false); - const { data: userCommunity, isLoading: isLoadingUserCommunity } = - useGetCommunityByIdQuery({ - id: userCommunityId || '', - enabled: !!userCommunityId, - }); + const { data: userCommunity } = useGetCommunityByIdQuery({ + id: userCommunityId || '', + enabled: !!userCommunityId, + }); - if (showSkeleton || isLoadingUserCommunity) { + if (showSkeleton) { return (