diff --git a/src/pages/details/[slug]/index.js b/src/pages/details/[slug]/index.js index ced21bd..251ee4b 100644 --- a/src/pages/details/[slug]/index.js +++ b/src/pages/details/[slug]/index.js @@ -13,6 +13,8 @@ import axios from 'axios'; import ZapThreadsWrapper from '@/components/ZapThreadsWrapper'; import appConfig from "@/config/appConfig"; +// todo: /decrypt is still being called way too much on this page, need to clean up state management + const Details = () => { const [event, setEvent] = useState(null); const [author, setAuthor] = useState(null); diff --git a/src/pages/index.js b/src/pages/index.js index cd1b1d1..573f1e2 100644 --- a/src/pages/index.js +++ b/src/pages/index.js @@ -10,7 +10,7 @@ export default function Home() { <> PlebDevs - + diff --git a/src/pages/testr.js b/src/pages/testr.js deleted file mode 100644 index 2bcb528..0000000 --- a/src/pages/testr.js +++ /dev/null @@ -1,13 +0,0 @@ -import React from 'react'; -import GithubContributionChart from '@/components/charts/GithubContributionChart'; - -const Testr = () => { - return ( -
- -
- ); -}; - -export default Testr; -