diff options
| author | Armand Philippot <git@armandphilippot.com> | 2022-02-14 13:57:06 +0100 |
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2022-02-14 14:15:54 +0100 |
| commit | 637350e4d152de1346857d645bda8443900ec6f4 (patch) | |
| tree | 23b43c7ce7e25935efe5b1dd156ad186334ee956 /src/ts/types/articles.ts | |
| parent | 9c150f28e4a23dfb4965fc3a4cdee16933a3def5 (diff) | |
fix: update comments list when a new comment is send
The comments list was static before. If an user posted a comment, even
after it was approved, the comments list was keeping the old state.
Diffstat (limited to 'src/ts/types/articles.ts')
| -rw-r--r-- | src/ts/types/articles.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/ts/types/articles.ts b/src/ts/types/articles.ts index 75e5a1a..ea90207 100644 --- a/src/ts/types/articles.ts +++ b/src/ts/types/articles.ts @@ -35,7 +35,6 @@ export type ArticleMeta = { export type Article = { author: ArticleAuthor; commentCount: number | null; - comments: Comment[]; content: string; databaseId: number; dates: Dates; @@ -55,7 +54,6 @@ export type RawArticle = Pick< > & { acfPosts: RawACFPosts; author: { node: ArticleAuthor }; - comments: CommentsNode; contentParts: ContentParts; date: string; featuredImage: RawCover; @@ -91,6 +89,7 @@ export type PostBy = { }; export type ArticleProps = { + comments: Comment[]; post: Article; }; |
