diff --git a/app/soapbox/pages/profile-page.tsx b/app/soapbox/pages/profile-page.tsx index 6d0f74d4f..b4c746473 100644 --- a/app/soapbox/pages/profile-page.tsx +++ b/app/soapbox/pages/profile-page.tsx @@ -31,9 +31,7 @@ const ProfilePage: React.FC = ({ params, children }) => { const history = useHistory(); const username = params?.username || ''; - const { account } = useAccountLookup(username); - - console.log(account?.relationship); + const { account } = useAccountLookup(username, { withRelationship: true }); const me = useAppSelector(state => state.me); const features = useFeatures();