diff --git a/src/components/Topic/Card.tsx b/src/components/Topic/Card.tsx
index 1bebbb9a..8a95217e 100644
--- a/src/components/Topic/Card.tsx
+++ b/src/components/Topic/Card.tsx
@@ -73,6 +73,15 @@ export const TopicCard = (props: TopicProps) => {
t('author') +
plural(topic().stat?.authors || 0, locale() === 'ru' ? ['ов', '', 'а'] : ['s', '', 's'])}
+
+ {topic().stat?.followers +
+ ' ' +
+ t('follower') +
+ plural(
+ topic().stat?.followers || 0,
+ locale() === 'ru' ? ['ов', '', 'а'] : ['s', '', 's']
+ )}
+
{/*FIXME*/}
{/**/}
{/* */}
diff --git a/src/graphql/query/article-reactions.ts b/src/graphql/query/article-reactions.ts
index 2ddc9602..c04d6bc8 100644
--- a/src/graphql/query/article-reactions.ts
+++ b/src/graphql/query/article-reactions.ts
@@ -1,7 +1,7 @@
import { gql } from '@urql/core'
export default gql`
- query ReactionsByShoutQuery($slug: String!, $limit: String!, $limit: Int!, $offset: Int!) {
+ query ReactionsByShoutQuery($slug: String!, $limit: Int!, $offset: Int!) {
reactionsByShout(slug: $slug, limit: $limit, offset: $offset) {
id
body
diff --git a/src/graphql/query/articles-for-author-reactions.ts b/src/graphql/query/articles-for-author-reactions.ts
index b96e2834..4592c63e 100644
--- a/src/graphql/query/articles-for-author-reactions.ts
+++ b/src/graphql/query/articles-for-author-reactions.ts
@@ -3,7 +3,7 @@ import { gql } from '@urql/core'
// WARNING: need Auth header
export default gql`
- query ShoutsReactedByUserQuery($limit: String!, $limit: Int!, $offset: Int!) {
+ query ShoutsReactedByUserQuery($slug: String!, $limit: Int!, $offset: Int!) {
userReactedShouts(slug: String!, page: Int!, size: Int!) {
_id: slug
title
diff --git a/src/utils/apiClient.ts b/src/utils/apiClient.ts
index 04ef1418..0c0e8a21 100644
--- a/src/utils/apiClient.ts
+++ b/src/utils/apiClient.ts
@@ -223,7 +223,7 @@ export const apiClient = {
})
.toPromise()
- return response.data.reactionsByShout
+ return response.data.reactionsForShouts
},
getArticleReactions: async ({
articleSlug,