From d2f1768294e95e2b67e01b882e2e05a71bf0c34e Mon Sep 17 00:00:00 2001 From: Krishna Ayyalasomayajula Date: Mon, 1 Jun 2026 20:47:52 -0500 Subject: [PATCH] fix: use m.ul instead of motion.ul in PostList --- components/blog/PostList.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/components/blog/PostList.tsx b/components/blog/PostList.tsx index f584aed..a78e000 100644 --- a/components/blog/PostList.tsx +++ b/components/blog/PostList.tsx @@ -1,6 +1,6 @@ "use client"; -import { motion } from "motion/react"; +import { m } from "motion/react"; import { PostCard } from "./PostCard"; import type { PostMeta } from "@/lib/posts"; @@ -20,12 +20,12 @@ interface PostListProps { export function PostList({ posts }: PostListProps) { return ( - + {posts.map((post) => (
  • ))} -
    + ); }