diff --git a/apps/extension/src/ui/domains/Account/AccountAdd/Container.tsx b/apps/extension/src/ui/domains/Account/AccountAdd/Container.tsx
index 5a336a4ad..366fe644d 100644
--- a/apps/extension/src/ui/domains/Account/AccountAdd/Container.tsx
+++ b/apps/extension/src/ui/domains/Account/AccountAdd/Container.tsx
@@ -121,7 +121,7 @@ function NewAccountMethodButtons() {
/>
}
type="ethereum"
- to={`/accounts/add/derived?type=ethereum${accountType ? "&disableOtherTypes" : ""}`}
+ to={`/accounts/add/derived?type=ethereum`}
/>
}
type="polkadot"
- to={`/accounts/add/derived?type=sr25519${accountType ? "&disableOtherTypes" : ""}`}
+ to={`/accounts/add/derived?type=sr25519`}
/>
>
)
@@ -218,7 +218,7 @@ function WatchedAccountMethodButtons() {
/>
}
type="ethereum"
- to={`/accounts/add/watched?type=ethereum${accountType ? "&disableOtherTypes" : ""}`}
+ to={`/accounts/add/watched?type=ethereum`}
/>
}
type="polkadot"
- to={`/accounts/add/watched?type=sr25519${accountType ? "&disableOtherTypes" : ""}`}
+ to={`/accounts/add/watched?type=sr25519`}
/>
>
)
diff --git a/apps/extension/src/ui/domains/Account/AccountTypeSelector.tsx b/apps/extension/src/ui/domains/Account/AccountTypeSelector.tsx
index e082b8a40..082f7df7f 100644
--- a/apps/extension/src/ui/domains/Account/AccountTypeSelector.tsx
+++ b/apps/extension/src/ui/domains/Account/AccountTypeSelector.tsx
@@ -34,14 +34,12 @@ const AccountTypeButton: FC<{
type AccountTypeSelectorProps = {
defaultType?: UiAccountAddressType
- disableOtherTypes?: boolean
onChange: (type: UiAccountAddressType) => void
className?: string
}
export const AccountTypeSelector = ({
defaultType,
- disableOtherTypes,
onChange,
className,
}: AccountTypeSelectorProps) => {
@@ -70,7 +68,6 @@ export const AccountTypeSelector = ({
{t("Ethereum, Base, zkSync, Arbitrum, BSC, and all EVM chains")}
}
- disabled={disableOtherTypes && defaultType !== "ethereum"}
onClick={handleClick("ethereum")}
/>