aboutsummaryrefslogtreecommitdiff
path: root/src/components/Sections/LatestPosts.astro
diff options
context:
space:
mode:
authorValentin Popov <valentin@popov.link>2026-04-09 11:52:31 +0300
committerValentin Popov <valentin@popov.link>2026-04-09 11:52:31 +0300
commit994fb09d050b70204f327874a474e97d342ce006 (patch)
tree7ba5e46aaf9cd28fe551bcedd0a528fb19899281 /src/components/Sections/LatestPosts.astro
parent7dd43ae74ecb9fe443d5102e290e39612aa7e9ec (diff)
parentf90592d8a106bea418cbd3d8bce9c2d86029f93c (diff)
downloadpopov.link-994fb09d050b70204f327874a474e97d342ce006.tar.xz
popov.link-994fb09d050b70204f327874a474e97d342ce006.zip
Merge pull request 'fix(deps): update dependency astro to v6' (!21) from renovate/major-astro-monorepo into master
Reviewed-on: https://code.popov.link/valentineus/popov.link/pulls/21
Diffstat (limited to 'src/components/Sections/LatestPosts.astro')
-rw-r--r--src/components/Sections/LatestPosts.astro2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/Sections/LatestPosts.astro b/src/components/Sections/LatestPosts.astro
index e514ff5..5c6afd9 100644
--- a/src/components/Sections/LatestPosts.astro
+++ b/src/components/Sections/LatestPosts.astro
@@ -27,7 +27,7 @@ const latestPosts = posts.slice(0, 5);
{
latestPosts.map((post) => (
<li>
- <a href={`/blog/${post.slug}`} lang={post.data.lang}>
+ <a href={`/blog/${post.id}`} lang={post.data.lang}>
{post.data.title}
</a>