This commit is contained in:
Jordi Enric
2024-11-02 15:32:36 +01:00
parent 3160c657d1
commit 5128784c2a
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -25,7 +25,7 @@ const Blog = async () => {
className="flex gap-4 transition-all hover:scale-[1.02]"
>
<img
className="h-80 w-full rounded-xl object-cover"
className="h-96 w-full rounded-xl object-cover"
width={300}
height={200}
src={latestPost.cover_image || ""}
@@ -33,7 +33,7 @@ export default function Post() {
};
}) || [];
const filteredTags = tags.filter((tag) => tag !== undefined);
const filteredTags = tags.filter((tag) => tag.id === undefined);
if (isLoading || tagsQuery.isLoading || isRefetching) {
return (