From 828e7549c93b064a04f898b7871afc09c587048b Mon Sep 17 00:00:00 2001 From: Matthias Kretschmann Date: Wed, 24 Oct 2018 15:05:35 +0200 Subject: [PATCH] another meta title fix --- src/components/atoms/SEO.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/atoms/SEO.jsx b/src/components/atoms/SEO.jsx index 53bf9f5d..24db0f72 100644 --- a/src/components/atoms/SEO.jsx +++ b/src/components/atoms/SEO.jsx @@ -147,7 +147,7 @@ const SEO = ({ post, slug, postSEO }) => ( if (postSEO) { const postMeta = post.frontmatter - title = `${postMeta.title} ¦ ${siteMeta.siteDescription}` + title = `${postMeta.title} ¦ ${siteMeta.siteTitle}` description = postMeta.description ? postMeta.description : post.excerpt image = postMeta.image ? postMeta.image.childImageSharp.fluid.src : logo postURL = `${siteMeta.siteUrl}${slug}`