diff --git a/pages/my-posts/index.tsx b/pages/my-posts/index.tsx index 5d1e2190..26c42af2 100644 --- a/pages/my-posts/index.tsx +++ b/pages/my-posts/index.tsx @@ -48,6 +48,7 @@ const MyPosts: NextPage = ({ { name: "Drafts", href: "?tab=drafts", + value: "drafts", data: drafts.data, status: drafts.status, current: tab !== "published", @@ -55,6 +56,7 @@ const MyPosts: NextPage = ({ { name: "Published", href: "?tab=published", + value: "published", data: published.data, status: published.status, current: tab === "published", @@ -136,11 +138,17 @@ const MyPosts: NextPage = ({