From 8ac003aee649300139ec0f2e0c2bc7dfc82a0d0f Mon Sep 17 00:00:00 2001 From: Jungu Lee <1zzangjun@gmail.com> Date: Thu, 9 Nov 2023 05:24:39 +0900 Subject: [PATCH] =?UTF-8?q?Refactor=20:=20PostInterface=20=EB=B3=80?= =?UTF-8?q?=EA=B2=BD=EC=97=90=20=EB=94=B0=EB=A5=B8=20interface=20=ED=94=84?= =?UTF-8?q?=EB=A1=9C=ED=8D=BC=ED=8B=B0=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- client/src/components/post/PostHashtagList.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/components/post/PostHashtagList.tsx b/client/src/components/post/PostHashtagList.tsx index 07a6fba..09fee0c 100644 --- a/client/src/components/post/PostHashtagList.tsx +++ b/client/src/components/post/PostHashtagList.tsx @@ -4,7 +4,7 @@ import { Box, BoxProps, Typography } from "@mui/material"; import Link from "next/link"; interface TagListInterface extends BoxProps { - tags: PostInterface["tags"]; + tags: PostInterface['tagList']; } const PostHashTagList = ({ tags, ...others }: TagListInterface) => { return (