Skip to content

Commit

Permalink
fix: copy feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
alecdwm committed Dec 23, 2024
1 parent 4d47344 commit 74e6d41
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ function NewAccountMethodButtons() {
<SelectAccountTypeButtonHeader
title={t("New Ethereum Account")}
tooltip={t(
"Pick this option for Ethereum, Base, zkSync, Arbitrum, BSC, and all other EVM chains.",
"Pick this option for Ethereum, Base, zkSync, Arbitrum, BSC, and all EVM chains.",
)}
/>
}
Expand All @@ -129,7 +129,7 @@ function NewAccountMethodButtons() {
<SelectAccountTypeButtonHeader
title={t("New Polkadot Account")}
tooltip={t(
"Pick this option for Polkadot, AssetHub, Bittensor, and most Polkadot ecosystem chains.",
"Pick this option for Polkadot Relay Chain, Asset Hub, Bittensor, and most Polkadot chains.",
)}
/>
}
Expand Down Expand Up @@ -213,7 +213,7 @@ function WatchedAccountMethodButtons() {
<SelectAccountTypeButtonHeader
title={t("Watch Ethereum Account")}
tooltip={t(
"Pick this option for Ethereum, Base, zkSync, Arbitrum, BSC, and all other EVM chains.",
"Pick this option for Ethereum, Base, zkSync, Arbitrum, BSC, and all EVM chains.",
)}
/>
}
Expand All @@ -226,7 +226,7 @@ function WatchedAccountMethodButtons() {
<SelectAccountTypeButtonHeader
title={t("Watch Polkadot Account")}
tooltip={t(
"Pick this option for Polkadot, AssetHub, Bittensor, and most Polkadot ecosystem chains.",
"Pick this option for Polkadot Relay Chain, Asset Hub, Bittensor, and most Polkadot chains.",
)}
/>
}
Expand Down
4 changes: 2 additions & 2 deletions apps/extension/src/ui/domains/Account/AccountTypeSelector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export const AccountTypeSelector = ({
title={t("Ethereum")}
subtitle={
<div className="line-clamp-2">
{t("Ethereum, Base, zkSync, Arbitrum, BSC, and all other EVM chains")}
{t("Ethereum, Base, zkSync, Arbitrum, BSC, and all EVM chains")}
</div>
}
disabled={disableOtherTypes && defaultType !== "ethereum"}
Expand All @@ -82,7 +82,7 @@ export const AccountTypeSelector = ({
title={t("Polkadot")}
subtitle={
<div className="line-clamp-2">
{t("Polkadot, AssetHub, Bittensor, and most Polkadot ecosystem chains")}
{t("Relay Chain, Asset Hub, Bittensor, and most Polkadot chains")}
</div>
}
disabled={disableOtherTypes && defaultType !== "sr25519"}
Expand Down

0 comments on commit 74e6d41

Please sign in to comment.