From 25d3b8a050bcef33145db7fab5d59670b1e660ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dorien=20Gr=C3=B6nwald?= Date: Fri, 5 Jul 2024 08:50:05 +0200 Subject: [PATCH] fix: use correct path for og image --- src/tsx/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tsx/App.tsx b/src/tsx/App.tsx index b980317..0c7516c 100644 --- a/src/tsx/App.tsx +++ b/src/tsx/App.tsx @@ -8,7 +8,7 @@ function App() { const ogImage = document.getElementById('og-image'); if (ogImage) { const currentDomain = window.location.origin; - ogImage.setAttribute('content', currentDomain + '/public/assets/images/open-graph-image.png'); + ogImage.setAttribute('content', currentDomain + '/assets/images/open-graph-image.png'); } return (