mirror of
https://github.com/Ategon/Jamjar.git
synced 2025-02-12 06:16:21 +00:00
Set likes to number
This commit is contained in:
parent
bc7ed52662
commit
32705c8662
1 changed files with 2 additions and 2 deletions
|
@ -9,7 +9,7 @@ import { redirect } from "next/navigation";
|
||||||
import { useState } from "react";
|
import { useState } from "react";
|
||||||
|
|
||||||
export default function LikeButton({ post }: { post: PostType }) {
|
export default function LikeButton({ post }: { post: PostType }) {
|
||||||
const [likes, setLikes] = useState(post.likes.length);
|
const [likes, setLikes] = useState<number>(post.likes.length);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Button
|
<Button
|
||||||
|
@ -42,7 +42,7 @@ export default function LikeButton({ post }: { post: PostType }) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
setLikes(await response.text());
|
setLikes(parseInt(await response.text()));
|
||||||
}
|
}
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
|
|
Loading…
Reference in a new issue