diff --git a/src/components/Views/Author.tsx b/src/components/Views/Author.tsx index a2aa1e99..454c3d91 100644 --- a/src/components/Views/Author.tsx +++ b/src/components/Views/Author.tsx @@ -19,7 +19,7 @@ import { Popup } from '../_shared/Popup' import { AuthorCard } from '../Author/Card' import { loadReactionsBy, REACTIONS_AMOUNT_PER_PAGE } from '../../stores/zine/reactions' import { apiClient } from '../../utils/apiClient' -import Comment from '../Article/Comment' +import { Comment } from '../Article/Comment' // TODO: load reactions on client type AuthorProps = { diff --git a/src/utils/apiClient.ts b/src/utils/apiClient.ts index 936701da..c39e842b 100644 --- a/src/utils/apiClient.ts +++ b/src/utils/apiClient.ts @@ -14,7 +14,8 @@ import type { QueryLoadRecipientsArgs, User, ProfileInput, - ReactionInput + ReactionInput, + ReactionBy } from '../graphql/types.gen' import { publicGraphQLClient } from '../graphql/publicGraphQLClient' import { getToken, privateGraphQLClient } from '../graphql/privateGraphQLClient'