diff options
| author | Armand Philippot <git@armandphilippot.com> | 2021-12-16 15:01:57 +0100 | 
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2021-12-16 15:01:57 +0100 | 
| commit | 4b3b71a7e44a01550fe4d7c0be67b72aae109e73 (patch) | |
| tree | 85025b7383fb892d29ec8e3956f316850bdb070b /src/ts | |
| parent | eb459cc248a5940a14193b20d263ffee3d345026 (diff) | |
chore: fix typo
Diffstat (limited to 'src/ts')
| -rw-r--r-- | src/ts/types/articles.ts | 2 | ||||
| -rw-r--r-- | src/ts/types/blog.ts | 2 | 
2 files changed, 2 insertions, 2 deletions
| diff --git a/src/ts/types/articles.ts b/src/ts/types/articles.ts index 664e237..91703a2 100644 --- a/src/ts/types/articles.ts +++ b/src/ts/types/articles.ts @@ -11,7 +11,7 @@ export type ArticleDates = {  export type ArticlePreviewResponse = {    acfPosts: {      postsInSubject: SubjectPreview[] | null; -    postsInThematics: ThematicPreview[] | null; +    postsInThematic: ThematicPreview[] | null;    };    commentCount: number | null;    contentParts: { diff --git a/src/ts/types/blog.ts b/src/ts/types/blog.ts index 76eaedb..32fa9b8 100644 --- a/src/ts/types/blog.ts +++ b/src/ts/types/blog.ts @@ -38,7 +38,7 @@ export type BlogPageProps = {    fallback: PostsList;  }; -export type AllPostsSlugReponse = { +export type AllPostsSlugResponse = {    posts: {      nodes: ArticleSlug[];    }; | 
