diff --git a/src/components/posts/LikeButton.tsx b/src/components/posts/LikeButton.tsx index 122c90d..f76cf42 100644 --- a/src/components/posts/LikeButton.tsx +++ b/src/components/posts/LikeButton.tsx @@ -9,7 +9,7 @@ import { redirect } from "next/navigation"; import { useState } from "react"; export default function LikeButton({ post }: { post: PostType }) { - const [likes, setLikes] = useState(post.likes.length); + const [likes, setLikes] = useState(post.likes.length); return (