Signed-off-by: Traxus <shyidx@gmail.com>

This commit is contained in:
Traxus 2023-04-21 21:59:49 -04:00
parent d847944206
commit acd5bb403d

View File

@ -83,7 +83,7 @@ export const getStaticPaths: GetStaticPaths = async () => {
//===== /\ FINISH NEXT_PUBLIC_DATOCMS_BYPASS /\ ====================================================
const paths = posts?.map((post) => ({
const paths = posts?.map((post : any) => ({
params: { slug: post.slug as string }
}))