```
if (this.classList.contains('liked')) {
const { likes } = await likePost(postId); // This should call `unlikePost` lol
} else {
const { likes } = await unlikePost(postId); // and this `likePost`
}```
```
if (this.classList.contains('liked')) {
const { likes } = await likePost(postId); // This should call `unlikePost` lol
} else {
const { likes } = await unlikePost(postId); // and this `likePost`
}```