diff options
Diffstat (limited to 'src/services/graphql/articles.ts')
| -rw-r--r-- | src/services/graphql/articles.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/services/graphql/articles.ts b/src/services/graphql/articles.ts index f0ba4e4..27406ac 100644 --- a/src/services/graphql/articles.ts +++ b/src/services/graphql/articles.ts @@ -82,10 +82,10 @@ export const getArticleFromRawData = (data: RawArticle): Article => { title: seo?.title || '', }, thematics: acfPosts.postsInThematic?.map((thematic) => - getPageLinkFromRawData(thematic) + getPageLinkFromRawData(thematic, 'thematic') ), topics: acfPosts.postsInTopic?.map((topic) => - getPageLinkFromRawData(topic) + getPageLinkFromRawData(topic, 'topic') ), wordsCount: info.wordsCount, }, |
