From c24d306ea8413bf2e4259ed02e691f1e3b25d52a Mon Sep 17 00:00:00 2001 From: Erin Beal Date: Tue, 5 Dec 2023 13:20:40 -0700 Subject: [PATCH] fix: renames posts to todos --- src/fragments/lib/troubleshooting/common/upgrading.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/fragments/lib/troubleshooting/common/upgrading.mdx b/src/fragments/lib/troubleshooting/common/upgrading.mdx index 8b379930d30..a5080edb516 100644 --- a/src/fragments/lib/troubleshooting/common/upgrading.mdx +++ b/src/fragments/lib/troubleshooting/common/upgrading.mdx @@ -969,7 +969,7 @@ const getServerSideProps = async ({ req }) => { return { props: { - posts: data.listTodos.items + todos: data.listTodos.items } }; }; @@ -1012,7 +1012,7 @@ const getServerSideProps = async ({ req, res }) => { return { props: { - posts: data.listTodos.items + todos: data.listTodos.items } }; };