remove console.log at /posts[slug].jsx line 31

This commit is contained in:
bluestar_ 2023-12-28 10:33:42 +07:00
parent 83d5a04c51
commit faffe2bbb7

View file

@ -28,7 +28,7 @@ export async function getStaticProps({ params: { slug } }) {
}
export default function PostPage({ frontmatter, content }) {
console.log(frontmatter.tags)
const postTags = frontmatter.tags.map((tag) => (
<div
className="inline-block border-2 rounded-md p-1 w-fit h-fit font-bold text-lg mr-1"