Removed await from non async function call

This commit is contained in:
Ryan Freeman 2021-11-16 22:36:32 +00:00
parent 6bd5a88c89
commit 3ff9321ec5

View File

@ -33,7 +33,7 @@ export default function Home({projectData}) {
} }
export async function getStaticProps() { export async function getStaticProps() {
const projectData = await getCustomData('projects.json'); const projectData = getCustomData('projects.json');
return { return {
props: { props: {