Skip to content

Commit 7d6574e

Browse files
committed
Fix missing images
1 parent 5a5be2e commit 7d6574e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

routes/blog-tag-route.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export function blogTagRoute() {
3131
<img
3232
class="flex-shrink-0 rounded-lg md:w-[500px] md:h-[200px] object-cover"
3333
src={post.image
34-
? `blog/${post.id}/${post.image}`
34+
? `/blog/${post.id}/${post.image}`
3535
: "/assets/fs-logo-no-text.svg"}
3636
alt="blog image"
3737
/>

0 commit comments

Comments
 (0)