| title | Invalid `getStaticProps` Return Value |
|---|
In one of the page's getStaticProps the return value had the incorrect shape.
Make sure to return the following shape from getStaticProps:
export async function getStaticProps(ctx: {
params?: ParsedUrlQuery;
preview?: boolean;
previewData?: PreviewData;
}) {
return {
props: { [key: string]: any }
}
}