Skip to content

Commit

Permalink
#210 fix image metatag as no relative urls are allowed
Browse files Browse the repository at this point in the history
  • Loading branch information
pvhee committed Dec 6, 2019
1 parent 7ac4704 commit d317e94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/App/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ function App (props) {
</title>
<meta name="description" content={site.get('meta').description} />
<meta property="og:title" content="Gift Aid your donation" />
<meta property="og:image" content="/images/thank-you-mob.jpg" />
<meta property="og:image" content={`${site.getCurrentUrl()}/images/thank-you-mob.jpg`} />
<meta property="og:site_name" content="Comic Relief" />
<meta property="og:url" content={window.location.href} />
<meta property="og:description" content={site.get('meta').description} />
Expand Down

0 comments on commit d317e94

Please sign in to comment.