Skip to content

Commit 7908ed0

Browse files
authored
Merge pull request #15295 from ethereum/hotfix-get-eth
Hotfix get eth page
2 parents f9614ab + 722d699 commit 7908ed0

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

app/[locale]/get-eth/page.tsx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ import { getRequiredNamespacesForPage } from "@/lib/utils/translations"
1515

1616
import GetEthPage from "./_components/get-eth"
1717

18+
import { routing } from "@/i18n/routing"
19+
1820
export default async function Page({
1921
params,
2022
}: {
@@ -40,6 +42,10 @@ export default async function Page({
4042
)
4143
}
4244

45+
export async function generateStaticParams() {
46+
return routing.locales.map((locale) => ({ locale }))
47+
}
48+
4349
export async function generateMetadata({
4450
params,
4551
}: {

0 commit comments

Comments
 (0)