diff --git a/web/pages/challenges/[username]/[contractSlug]/[challengeSlug].tsx b/web/pages/challenges/[username]/[contractSlug]/[challengeSlug].tsx index 443db25b..da4e67d7 100644 --- a/web/pages/challenges/[username]/[contractSlug]/[challengeSlug].tsx +++ b/web/pages/challenges/[username]/[contractSlug]/[challengeSlug].tsx @@ -96,9 +96,11 @@ export default function ChallengePage(props: { if (!contract || !challenge) return const ogCardProps = getOpenGraphProps(contract) + ogCardProps.creatorUsername = challenge.creatorUsername + ogCardProps.creatorAvatarUrl = challenge.creatorAvatarUrl ogCardProps.question = challenge.creatorName.split(' ')[0] + - "'s CHALLENGING you: " + + 'I challenge you to a bet on: ' + contract.question ogCardProps.probability = Math.round(challenge.creatorsOutcomeProb * 100) + '%'