Skip to content

Commit ec739e7

Browse files
committed
fix: fix unexpected translation keys on gas page [Fixes #15021]
1 parent 034b9fc commit ec739e7

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/pages/[locale]/gas.tsx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -399,11 +399,11 @@ const GasPage = () => {
399399
<Callout
400400
className="min-h-full flex-[1_1_416px]"
401401
image={whatIsEthereumImg}
402-
titleKey={t("page-gas-how-do-i-pay-less-gas-card-3-title")}
402+
titleKey={"page-gas:page-gas-how-do-i-pay-less-gas-card-3-title"}
403403
alt=""
404-
descriptionKey={t(
405-
"page-gas-how-do-i-pay-less-gas-card-3-description"
406-
)}
404+
descriptionKey={
405+
"page-gas:page-gas-how-do-i-pay-less-gas-card-3-description"
406+
}
407407
>
408408
<div>
409409
<ButtonLink href="/layer-2/">
@@ -414,11 +414,11 @@ const GasPage = () => {
414414
<Callout
415415
className="min-h-full flex-[1_1_416px]"
416416
image={dogeComputerImg}
417-
titleKey={t("page-community:page-community-explore-dapps-title")}
417+
titleKey={"page-community:page-community-explore-dapps-title"}
418418
alt={t("page-community:page-community-explore-dapps-alt")}
419-
descriptionKey={t(
419+
descriptionKey={
420420
"page-community:page-community-explore-dapps-description"
421-
)}
421+
}
422422
>
423423
<div>
424424
<ButtonLink href="/dapps/">

0 commit comments

Comments
 (0)