1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-29 03:59:54 +02:00

Fix roadmap json

This commit is contained in:
Kamran Ahmed
2023-06-05 20:38:54 +01:00
parent dec5e58063
commit b58c2a1356
2 changed files with 2 additions and 2 deletions

View File

@@ -14,7 +14,7 @@ export async function getStaticPaths() {
roadmapId,
},
props: {
roadmapJson: roadmapJson,
roadmapJson: roadmapJson?.default,
},
};
});

View File

@@ -17,7 +17,7 @@ export async function getStaticPaths() {
bestPracticeId,
},
props: {
bestPracticeJson: bestPracticeJson,
bestPracticeJson: bestPracticeJson?.default,
},
};
});