Skip to content

Commit e75356d

Browse files
rachelnaborsgaearon
authored andcommitted
fixing social sharing URL and description (#3974)
1 parent f2b8194 commit e75356d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

beta/src/components/Seo.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export const Seo = withRouter(
4242
<meta
4343
property="og:url"
4444
key="og:url"
45-
content={`https://reactjs.org${router.pathname}`}
45+
content={`https://beta.reactjs.org${router.pathname}`}
4646
/>
4747
{title != null && (
4848
<meta property="og:title" content={title} key="og:title" />
@@ -58,7 +58,7 @@ export const Seo = withRouter(
5858
<meta
5959
property="og:image"
6060
key="og:image"
61-
content={`https://reactjs.org${image}`}
61+
content={`https://beta.reactjs.org${image}`}
6262
/>
6363

6464
{/* TWITTER */}
@@ -83,7 +83,7 @@ export const Seo = withRouter(
8383
<meta
8484
name="twitter:image"
8585
key="twitter:image"
86-
content={`https://reactjs.org${image}`}
86+
content={`https://beta.reactjs.org${image}`}
8787
/>
8888

8989
{children}

0 commit comments

Comments
 (0)