From f92f5db53c19d41ce2b949a2fe8a055f1ec6e5a9 Mon Sep 17 00:00:00 2001 From: Amit Saha Date: Sun, 8 Nov 2020 18:17:19 +1100 Subject: [PATCH] fix --- .../micros-authentication.tsx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/microsAuthentication/micros-authentication.tsx b/src/microsAuthentication/micros-authentication.tsx index b1d279c..593c235 100644 --- a/src/microsAuthentication/micros-authentication.tsx +++ b/src/microsAuthentication/micros-authentication.tsx @@ -17,17 +17,17 @@ export function Register(store: Store) { id: 'og-micros-authentication', pageId: microsAuthentication.id, imagePath: 'src/yaml-validation/yaml-validate.png', - title: MicrosAuthentication.title, - description: MicrosAuthentication.description, + title: microsAuthentication.title, + description: microsAuthentication.description, }), ) store.dispatch( Action.blogPosts.add({ id: 'bp-micros-authentication', - pageId: MicrosAuthentication.id, + pageId: microsAuthentication.id, authorId: Authors.amitSaha.id, - description: MicrosAuthentication.description, - title: MicrosAuthentication.title, + description: microsAuthentication.description, + title: microsAuthentication.title, publishedDate: '2020-06-17', content: toVFile({ path: join(__dirname, 'content.md') }), @@ -35,15 +35,15 @@ export function Register(store: Store) { ) store.dispatch( Action.tags.add({ - id: MicrosAuthentication.id + '-general-post', + id: microsAuthentication.id + '-general-post', tag: 'general-post', - pageId: MicrosAuthentication.id, + pageId: microsAuthentication.id, }), ) store.dispatch( Action.previewPictures.add({ id: 'yaml-validation-picture', - pageId: MicrosAuthentication.id, + pageId: microsAuthentication.id, imagePath: 'src/yaml-validation/yaml-validate.svg', }), )