From a00d375ca37b19c11cff720b676582d5b7f76d4a Mon Sep 17 00:00:00 2001 From: trafficlunar Date: Mon, 14 Apr 2025 18:42:48 +0100 Subject: [PATCH] chore: remove testing value in like button component whoops --- src/app/components/like-button.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/components/like-button.tsx b/src/app/components/like-button.tsx index e56f6f8..e796a2d 100644 --- a/src/app/components/like-button.tsx +++ b/src/app/components/like-button.tsx @@ -17,7 +17,7 @@ interface Props { export default function LikeButton({ likes, isLiked, miiId, isLoggedIn, disabled, abbreviate, big }: Props) { const [isLikedState, setIsLikedState] = useState(isLiked); - const [likesState, setLikesState] = useState(10000); + const [likesState, setLikesState] = useState(likes); const onClick = async () => { if (disabled) return;