Skip to content

Commit 9f9cd5c

Browse files
authored
Merge pull request #15437 from ethereum/vision-fix
fix /roadmap/vision namespace missing
2 parents 0110791 + f71b372 commit 9f9cd5c

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/lib/utils/translations.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,8 +143,11 @@ const getRequiredNamespacesForPath = (relativePath: string) => {
143143
}
144144

145145
if (path.startsWith("/roadmap/vision/")) {
146-
primaryNamespace = "page-roadmap-vision"
147-
requiredNamespaces = [...requiredNamespaces, "page-upgrades-index"]
146+
requiredNamespaces = [
147+
...requiredNamespaces,
148+
"page-upgrades-index",
149+
"page-roadmap-vision",
150+
]
148151
}
149152

150153
if (path.startsWith("/gas/")) {

0 commit comments

Comments
 (0)