Skip to content

Commit f71b372

Browse files
committed
fix /roadmap/vision namespace missing
1 parent fd0fadb commit f71b372

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)