chore: remove testing value in like button component

whoops
This commit is contained in:
trafficlunar 2025-04-14 18:42:48 +01:00
parent 75bd7281e4
commit a00d375ca3

View file

@ -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;