Review changes

This commit is contained in:
Vesa Luusua 2017-09-29 15:24:54 +03:00
parent 30578a65bc
commit e6d22d7992
2 changed files with 5 additions and 1 deletions

View file

@ -191,6 +191,9 @@ const siteTitle = 'Saunatime';
const siteTwitterHandle = '@sharetribe';
// Facebook counts shares with app or page associated by this id
// Currently it is unset, but you can read more about fb:app_id from
// https://developers.facebook.com/docs/sharing/webmasters#basic
// You should create one to track social sharing in Facebook
const facebookAppId = null;
// NOTE: only expose configuration that should be visible in the

View file

@ -124,7 +124,8 @@ export const twitterMetaProps = data => {
}
if (twitterHandle) {
// TODO: this needs API support for listings
// TODO: If we want to connect providers twitter account on ListingPage
// we needs to get this info among listing data (API support needed)
twitterMeta.push({ name: 'twitter:creator', content: twitterHandle });
}