We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dedac5f commit 4943f9bCopy full SHA for 4943f9b
1 file changed
src/pages/[lang]/[...slug].astro
@@ -203,10 +203,9 @@ const { prev, next } = getAdjacentPages(
203
version
204
);
205
206
-// TODO: change the url when finish the redesign, this is just a temporary solution to avoid broken links for translated pages
207
const editUrl = isTranslation
208
- ? `https://github.com/expressjs/expressjs.com/blob/redesign/docs/i18n.md`
209
- : `https://github.com/expressjs/expressjs.com/edit/redesign/src/content/${page.collection}/${page.id}${fileExt}`;
+ ? `https://github.com/expressjs/expressjs.com/blob/main/docs/i18n.md`
+ : `https://github.com/expressjs/expressjs.com/edit/main/src/content/${page.collection}/${page.id}${fileExt}`;
210
---
211
212
<DocLayout
0 commit comments