From 7c8b1b8223d6c454c5fc9c01b15eab679d8852b6 Mon Sep 17 00:00:00 2001 From: kami <97310758+VlxtIykg@users.noreply.github.com> Date: Wed, 4 Mar 2026 04:51:27 +0800 Subject: [PATCH] fix(): Fix some (current) deprecated fields --- src/layouts/BlogPost.astro | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/layouts/BlogPost.astro b/src/layouts/BlogPost.astro index 30285c4..d564602 100644 --- a/src/layouts/BlogPost.astro +++ b/src/layouts/BlogPost.astro @@ -3,7 +3,9 @@ import BaseHead from '@components/BaseHead.astro'; import Header from '@components/Header.astro'; import GithubIcon from '@assets/github.svg' -const { title, description, pubDate, updatedDate, gitLink } = Astro.props; +// Has some irrelevant flags that we WILL use in the future. +// const { title, description, pubDate, updatedDate, gitLink } = Astro.props; +const { title, description, gitLink } = Astro.props; ---