From 3079a068ed875b9c861b7c6845f4389174f7a2ce Mon Sep 17 00:00:00 2001 From: MH4GF Date: Sun, 22 Dec 2024 15:14:43 +0900 Subject: [PATCH] fix: remove tag list --- app/articles/[slug]/_features/ArticleMetaDetail.tsx | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/app/articles/[slug]/_features/ArticleMetaDetail.tsx b/app/articles/[slug]/_features/ArticleMetaDetail.tsx index 1fa43f3d..f2c08995 100644 --- a/app/articles/[slug]/_features/ArticleMetaDetail.tsx +++ b/app/articles/[slug]/_features/ArticleMetaDetail.tsx @@ -1,7 +1,6 @@ import Image from "next/image"; import { MyAvatar, Time } from "@/app/_components"; -import { Tag } from "@/app/_features"; import { format } from "@/app/_utils"; import type { Article } from "contentlayer/generated"; import type { FC } from "react"; @@ -11,7 +10,7 @@ interface Props { } export const ArticleMetaDetail: FC = ({ - article: { headingImage, title, publishedAt: _publishedAt, tags }, + article: { headingImage, title, publishedAt: _publishedAt }, }) => { const publishedAt = format(new Date(_publishedAt)); @@ -45,11 +44,6 @@ export const ArticleMetaDetail: FC = ({ 5 min read -
- {tags.map((tag) => ( - - ))} -
); };