Skip to content

Commit

Permalink
fix: friends query dont use new avatar url field (#191)
Browse files Browse the repository at this point in the history
  • Loading branch information
42atomys authored Jul 20, 2022
1 parent dd4d180 commit 42509c1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
1 change: 1 addition & 0 deletions web/ui/src/graphql/definitions.gql
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ query myFollowings {
}
}
...UserIdentyData
duoAvatarURL
}
}

Expand Down
11 changes: 5 additions & 6 deletions web/ui/src/pages/friends/index.tsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
import React from 'react';
import Loader from '@components/Loader';
import { Search } from '@components/Search';
import { Menu, MenuCategory, MenuItem, useSidebar } from '@components/Sidebar';
import classNames from 'classnames';
import Head from 'next/head';
import { NextPage } from 'next';
import UserCard from '@components/UserCard';
import { Search } from '@components/Search';
import { MyFollowingsDocument, useMyFollowingsQuery, User } from '@graphql.d';
import Loader from '@components/Loader';
import { isFirstLoading } from '@lib/apollo';
import classNames from 'classnames';
import { NextPage } from 'next';
import Head from 'next/head';

type PageProps = {};

Expand Down

0 comments on commit 42509c1

Please sign in to comment.