We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent abdf84e commit 36e1af3Copy full SHA for 36e1af3
2 files changed
pages/blog.mdx
@@ -22,7 +22,7 @@ export function BlogHeader() {
22
}
23
24
export function BlogIndex() {
25
- const pages = getPagesUnderRoute("/zh/blog");
+ const pages = getPagesUnderRoute("/blog");
26
pages.sort((a, b) => {
27
if (a.frontMatter?.date && b.frontMatter?.date) {
28
return new Date(b.frontMatter.date) - new Date(a.frontMatter.date);
pages/changelog.mdx
@@ -24,7 +24,7 @@ export function ChangelogHeader() {
export function ChangelogIndex() {
- const pages = getPagesUnderRoute("/zh/changelog");
+ const pages = getPagesUnderRoute("/changelog");
29
30
0 commit comments