Skip to content

Commit 62a2801

Browse files
committed
Update badge i18n key
1 parent 77f650b commit 62a2801

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

ui/_locales/en/messages.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -551,7 +551,7 @@
551551
"compatibleChain": "EVM-compatible blockchain",
552552
"avalanche": "Mainnet C-Chain",
553553
"connected": "Connected",
554-
"featuredNetwork": "new"
554+
"newNetwork": "new"
555555
},
556556
"readOnly": "Read-only",
557557
"readOnlyNotice": "Read-only mode",

ui/components/TopMenu/TopMenuProtocolListItem.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ type Props = {
1616

1717
const isFeaturedNetwork = (network: EVMNetwork) => {
1818
if (sameNetwork(network, MEZO_TESTNET)) {
19-
return Date.now() < new Date("2025-04-10").getTime()
19+
return Date.now() < new Date("2025-04-17").getTime()
2020
}
2121
return false
2222
}
@@ -50,7 +50,7 @@ export default function TopMenuProtocolListItem(props: Props): ReactElement {
5050
<div className="title">
5151
{network.name}
5252
{isFeaturedNetwork(network) && (
53-
<span className="featured">{t("protocol.featuredNetwork")}</span>
53+
<span className="featured">{t("protocol.newNetwork")}</span>
5454
)}
5555
</div>
5656
<div className="sub_title">

0 commit comments

Comments
 (0)