diff options
Diffstat (limited to 'src/pages')
| -rw-r--r-- | src/pages/article/[slug].tsx | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/src/pages/article/[slug].tsx b/src/pages/article/[slug].tsx index f43c9ee..c9aedb8 100644 --- a/src/pages/article/[slug].tsx +++ b/src/pages/article/[slug].tsx @@ -28,6 +28,7 @@ const SingleArticle: NextPageWithLayout<ArticleProps> = ({ post }) => {      databaseId,      dates,      featuredImage, +    info,      intro,      seo,      topics, @@ -39,7 +40,9 @@ const SingleArticle: NextPageWithLayout<ArticleProps> = ({ post }) => {      author,      commentCount: comments.length,      dates, +    readingTime: info.readingTime,      thematics, +    wordsCount: info.wordsCount,    };    const router = useRouter(); | 
