Skip to content

Commit

Permalink
AccountModule: update "provider" copy to move towards wallets and acc…
Browse files Browse the repository at this point in the history
…ounts (#358)
  • Loading branch information
Evalir authored Jul 3, 2020
1 parent 432ee7d commit 35e37e6
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
8 changes: 4 additions & 4 deletions src/components/Account/AccountModule.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,25 +13,25 @@ import ScreenProviders from './ScreenProviders'
const SCREENS = [
{
id: 'providers',
title: 'Ethereum providers',
title: 'Use account from',
height:
4 * GU + // header
(12 + 1.5) * GU * Math.ceil(getUseWalletProviders().length / 2) + // buttons
7 * GU, // footer
},
{
id: 'connecting',
title: 'Ethereum providers',
title: 'Use account from',
height: 38 * GU,
},
{
id: 'connected',
title: 'Active wallet',
title: 'Active account',
height: 22 * GU,
},
{
id: 'error',
title: 'Ethereum providers',
title: 'Connection error',
height: 50 * GU,
},
]
Expand Down
2 changes: 1 addition & 1 deletion src/components/Account/ScreenProviders.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ function ScreenProviders({ onActivate }) {
`}
>
<Link href="https://ethereum.org/wallets/" css="text-decoration: none">
What is an Ethereum provider?
Don’t have an Ethereum account?
</Link>
</div>
</div>
Expand Down
1 change: 1 addition & 0 deletions src/components/Onboarding/Navigation.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ const buttonTransitionStyles = show => ({
opacity: Number(show),
transform: `translate3d(0, ${show ? 0 : 2}px, 0)`,
config: springs.swift,
pointerEvents: show ? 'auto' : 'none',
})

const Navigation = ({ step, steps, onPrev, onNext }) => {
Expand Down
1 change: 1 addition & 0 deletions src/components/Onboarding/OnboardingModal.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ const OnboardingModal = React.memo(function OnboardingModal({
const compactMode = width < 500 || height < 400
return (
<Modal
closeButton={false}
padding={0}
width={Math.min(1055, width - 40)}
visible={visible}
Expand Down

1 comment on commit 35e37e6

@vercel
Copy link

@vercel vercel bot commented on 35e37e6 Jul 3, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.