Skip to content

Commit

Permalink
Change connect wallet menu wording
Browse files Browse the repository at this point in the history
  • Loading branch information
teodorus-nathaniel committed Nov 10, 2023
1 parent 9fd41bd commit b9cc46b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/components/auth/LoginModal/LoginModalContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -250,15 +250,15 @@ export const ConnectWalletContent = ({ setCurrentState }: ContentProps) => {
className='pt-0'
menus={[
{
text: 'Connect EVM',
text: 'EVM',
icon: EthIcon,
onClick: () => {
setCurrentState('evm-address-link')
sendEvent('start_link_evm_address')
},
},
{
text: 'Connect Polkadot',
text: 'Polkadot',
icon: PolkadotIcon,
onClick: () => {
setCurrentState('polkadot-connect')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export default function LinkedAddressesContent({
{
text: (
<span className='flex items-center gap-2'>
<span>Connect EVM</span>
<span>EVM</span>
{evmAddress && (
<Notice size='sm'>{truncateAddress(evmAddress)}</Notice>
)}
Expand All @@ -44,7 +44,7 @@ export default function LinkedAddressesContent({
{
text: (
<span className='flex items-center gap-2'>
<span>Connect Polkadot</span>
<span>Polkadot</span>
{parentProxyAddress && (
<Notice size='sm'>
{truncateAddress(parentProxyAddress)}
Expand Down

0 comments on commit b9cc46b

Please sign in to comment.