summaryrefslogtreecommitdiffstats
path: root/src/components/PostPreview
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-01-19 14:45:06 +0100
committerArmand Philippot <git@armandphilippot.com>2022-01-19 14:47:40 +0100
commit1fa8d8281371db25ef9382b6087b7f3c0db73fe3 (patch)
tree898aee1e9a23c06e9658de240474d90870190e68 /src/components/PostPreview
parenta26b775b7bbf1abd3e99c8bf9ce4c7522d3a0adc (diff)
refactor(config): move defaultLocale as property of config.locales
I will need the country code, so I think it makes more sense to gather them inside the same property.
Diffstat (limited to 'src/components/PostPreview')
-rw-r--r--src/components/PostPreview/PostPreview.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/PostPreview/PostPreview.tsx b/src/components/PostPreview/PostPreview.tsx
index 2a0bcf1..47dbe5e 100644
--- a/src/components/PostPreview/PostPreview.tsx
+++ b/src/components/PostPreview/PostPreview.tsx
@@ -45,7 +45,7 @@ const PostPreview = ({
datePublished: publicationDate.toISOString(),
editor: { '@id': `${config.url}/#branding` },
image: post.featuredImage?.sourceUrl,
- inLanguage: config.defaultLocale,
+ inLanguage: config.locales.defaultLocale,
isBasedOn: `${config.url}/article/${post.slug}`,
isPartOf: { '@id': `${config.url}/blog` },
license: 'https://creativecommons.org/licenses/by-sa/4.0/deed.fr',