From 32705c866235848355dfa72893cf79d8346ebaf0 Mon Sep 17 00:00:00 2001 From: Ategon Date: Sat, 18 Jan 2025 12:52:16 -0500 Subject: [PATCH] Set likes to number --- src/components/posts/LikeButton.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 (