Répare les preview og:image

fix #2448
pull/2527/head
Johan Girod 2023-02-28 15:14:56 +01:00
parent 1bb92155d3
commit fc80c69f67
1 changed files with 0 additions and 4 deletions

View File

@ -1,5 +1,4 @@
import { useTranslation } from 'react-i18next'
import { useLocation } from 'react-router-dom'
import DefaultHelmet from './DefaultHelmet'
@ -20,7 +19,6 @@ export default function Meta({
ogTitle,
ogImage,
}: PropType) {
const { pathname } = useLocation()
const { t } = useTranslation()
// TODO: refacto des traductions en évitant qu'elles soit dynamique
@ -51,8 +49,6 @@ export default function Meta({
meta.ogImage.startsWith('http')
? meta.ogImage
: (typeof window !== 'undefined' ? window.location.host : '') +
pathname +
'/' +
meta.ogImage
}
/>