Skip to content

Commit

Permalink
Merge pull request #65 from SmartCityFlensburg/fix/use-correct-og-ima…
Browse files Browse the repository at this point in the history
…ge-path

fix: use correct path for og image
  • Loading branch information
doriengr authored Jul 5, 2024
2 parents 24ef8d6 + 25d3b8a commit b807327
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tsx/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
Expand Down

0 comments on commit b807327

Please sign in to comment.