diff --git a/src/app/boards/_components/boards-article-wrapper.tsx b/src/app/boards/_components/boards-article-wrapper.tsx index 910c1d9f..91acad0a 100644 --- a/src/app/boards/_components/boards-article-wrapper.tsx +++ b/src/app/boards/_components/boards-article-wrapper.tsx @@ -17,11 +17,13 @@ const BoardsArticleWrapper = ({ }: BoardsArticleWrapperProps) => { const { data } = useGetArticleDetail(article.id); const content = data?.article?.content || article.title; + const isLiked = data?.article?.isLiked ?? article.isLiked; return ( diff --git a/src/components/post-card/post-card.tsx b/src/components/post-card/post-card.tsx index 3b5699f8..68962d93 100644 --- a/src/components/post-card/post-card.tsx +++ b/src/components/post-card/post-card.tsx @@ -70,12 +70,14 @@ const PostCard = ({ {image && ( thumbnail