aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/Sharing/Sharing.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Sharing/Sharing.tsx')
-rw-r--r--src/components/Sharing/Sharing.tsx5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/components/Sharing/Sharing.tsx b/src/components/Sharing/Sharing.tsx
index 9f8383b..d4d2dff 100644
--- a/src/components/Sharing/Sharing.tsx
+++ b/src/components/Sharing/Sharing.tsx
@@ -21,6 +21,7 @@ type Website = {
const Sharing = ({ excerpt, title }: { excerpt: string; title: string }) => {
const [pageExcerpt, setPageExcerpt] = useState('');
const [pageUrl, setPageUrl] = useState('');
+ const [hostname, setHostname] = useState('');
const router = useRouter();
useEffect(() => {
@@ -36,6 +37,7 @@ const Sharing = ({ excerpt, title }: { excerpt: string; title: string }) => {
router.asPath
}`;
+ setHostname(hostname);
setPageUrl(fullUrl);
}, [router.asPath]);
@@ -59,8 +61,7 @@ const Sharing = ({ excerpt, title }: { excerpt: string; title: string }) => {
}
break;
case 'title':
- const prefix =
- id === 'email' ? t`Seen on ${window.location.hostname}:` : '';
+ const prefix = id === 'email' ? t`Seen on ${hostname}:` : '';
sharingUrl += encodeURI(`${prefix} ${title}`);
break;
case 'url':