Skip to content

Commit c1d6d52

Browse files
authored
Merge pull request #15730 from ethereum/staging
Back-merge `staging` into `dev`
2 parents 18027a0 + 6232f1e commit c1d6d52

File tree

4 files changed

+17
-5
lines changed

4 files changed

+17
-5
lines changed

app/[locale]/enterprise/utils.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ export const parseActivity = async ({
7777
{
7878
label: t("page-enterprise-activity-tx-count"),
7979
apiProvider: "growthepie",
80-
apiUrl: "https://www.growthepie.xyz/fundamentals/transaction-count",
80+
apiUrl: "https://www.growthepie.com/fundamentals/transaction-count",
8181
state: txCountFormatted,
8282
},
8383
{
@@ -96,7 +96,7 @@ export const parseActivity = async ({
9696
{
9797
label: t("page-enterprise-activity-media-tx-cost"),
9898
apiProvider: "growthepie",
99-
apiUrl: "https://www.growthepie.xyz/fundamentals/transaction-costs",
99+
apiUrl: "https://www.growthepie.com/fundamentals/transaction-costs",
100100
state: medianTxCost,
101101
},
102102
]

src/components/Nav/Client/index.tsx

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import { BsTranslate } from "react-icons/bs"
77

88
import SearchButton from "@/components/Search/SearchButton"
99
import SearchInputButton from "@/components/Search/SearchInputButton"
10-
import { Button } from "@/components/ui/buttons/Button"
1110
import { Skeleton } from "@/components/ui/skeleton"
1211

1312
import { DESKTOP_LANGUAGE_BUTTON_NAME } from "@/lib/constants"
@@ -18,6 +17,19 @@ import { useThemeToggle } from "../useThemeToggle"
1817
import { useBreakpointValue } from "@/hooks/useBreakpointValue"
1918
import { useTranslation } from "@/hooks/useTranslation"
2019

20+
const Button = dynamic(
21+
() => import("../../ui/buttons/Button").then((mod) => mod.Button),
22+
{
23+
ssr: false,
24+
loading: () => (
25+
<Skeleton
26+
data-label="mobile-menu"
27+
className="mx-3 size-6 px-3 max-md:hidden"
28+
/>
29+
),
30+
}
31+
)
32+
2133
const Menu = dynamic(() => import("../Menu"), {
2234
ssr: false,
2335
loading: () => (

src/intl/fr/page-layer-2-networks.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"page-layer-2-networks-more-advanced-descripton-2": "encore récents et en partie expérimentaux.",
77
"page-layer-2-networks-more-advanced-descripton-3": "Pour en savoir plus sur la technologie, les risques et les mécanismes de confiance propres à ces réseaux, nous vous recommandons de consulter L2BEAT, qui propose un cadre d’évaluation des risques complet pour chaque projet, ainsi que growthepie, qui fournit des analyses de données générales.",
88
"page-layer-2-networks-more-advanced-link-1": "Consultez le site l2beat.com",
9-
"page-layer-2-networks-more-advanced-link-2": "Consultez le site growthepie.xyz",
9+
"page-layer-2-networks-more-advanced-link-2": "Consultez le site growthepie.com",
1010
"page-layer-2-networks-callout-1-title": "Quels sont les avantages?",
1111
"page-layer-2-networks-callout-1-description": "La robustesse et la sécurité d’Ethereum permettent d'obtenir une plateforme sur laquelle d’autres réseaux peuvent se construire.",
1212
"page-layer-2-networks-callout-2-title": "Envie d’en savoir plus ?",

src/intl/pt-br/page-layer-2-networks.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"page-layer-2-networks-more-advanced-descripton-2": "jovens e de certa forma experimentais.",
77
"page-layer-2-networks-more-advanced-descripton-3": "Para mais informações sobre a tecnologia, os riscos e as premissas de confiança dessa rede, recomendamos verificar o site L2BEAT, que fornece uma estrutura completa de avaliação de riscos de cada projeto e usa o growthepie para análises gerais de dados.",
88
"page-layer-2-networks-more-advanced-link-1": "Visite l2beat.com",
9-
"page-layer-2-networks-more-advanced-link-2": "Acesse growthepie.xyz",
9+
"page-layer-2-networks-more-advanced-link-2": "Acesse growthepie.com",
1010
"page-layer-2-networks-callout-1-title": "Quais são os benefícios?",
1111
"page-layer-2-networks-callout-1-description": "A força e a segurança da Ethereum fornecem uma plataforma sobre a qual outras redes podem se desenvolver.",
1212
"page-layer-2-networks-callout-2-title": "Interessado em saber mais detalhes?",

0 commit comments

Comments
 (0)