Fetch relationship from profile page

environments/review-change-ent-6o2wvy/deployments/3529
Alex Gleason 2023-06-25 12:04:30 -05:00
rodzic 072014e39e
commit 5320f04e6e
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 7211D1F99744FBB7
1 zmienionych plików z 1 dodań i 3 usunięć

Wyświetl plik

@ -31,9 +31,7 @@ const ProfilePage: React.FC<IProfilePage> = ({ 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();