Skip to content

Commit

Permalink
Fix downloadable image url for blog post
Browse files Browse the repository at this point in the history
  • Loading branch information
Morgan Brown committed Oct 21, 2024
1 parent bef0a0b commit 4af0dba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/routes/blog/posts/[slug]/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
export let data: PageData;
let imageUrl = '/api/share-images/blog-post/og/{encodeURIComponent(data.meta.slug)}.png';
let imageUrl = `/api/share-images/blog-post/og/${encodeURIComponent(data.meta.slug)}.png`;
</script>

<HeadMeta
Expand Down

0 comments on commit 4af0dba

Please sign in to comment.