title |
---|
Invalid `getServerSideProps` Return Value |
In one of the page's getServerSideProps
the return value had the incorrect shape.
Make sure to return the following shape from getServerSideProps
:
export async function getServerSideProps(ctx: GetServerSidePropsContext) {
return {
props: { [key: string]: any }
}
}