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.
/eth
1 parent 046bee2 commit 82c8b33Copy full SHA for 82c8b33
src/lib/utils/translations.ts
@@ -66,6 +66,10 @@ const getRequiredNamespacesForPath = (path: string) => {
66
]
67
}
68
69
+ if (path.startsWith("/eth")) {
70
+ requiredNamespaces = [...requiredNamespaces, "page-eth"]
71
+ }
72
+
73
if (path.startsWith("/glossary")) {
74
requiredNamespaces = [...requiredNamespaces, "glossary"]
75
@@ -131,7 +135,8 @@ const getRequiredNamespacesForPath = (path: string) => {
131
135
path.startsWith("/nft") ||
132
136
path.startsWith("/roadmap/merge") ||
133
137
path.startsWith("/security") ||
134
- path.startsWith("/quizzes")
138
+ path.startsWith("/quizzes") ||
139
+ path.startsWith("/eth")
140
) {
141
requiredNamespaces = [...requiredNamespaces, "learn-quizzes"]
142
0 commit comments