Browse Source
Merge pull request #1796 from valpinkman/feat/better-skip-onboarding
change skip genuine on onboarding
develop
Gaëtan Renaudeau
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
3 deletions
-
src/components/Onboarding/steps/GenuineCheck/GenuineCheckUnavailable.js
|
|
@ -31,6 +31,8 @@ export function GenuineCheckUnavailableFooter({ |
|
|
|
</Button> |
|
|
|
<Box horizontal ml="auto"> |
|
|
|
<Button |
|
|
|
outline |
|
|
|
outlineColor="alertRed" |
|
|
|
disabled={false} |
|
|
|
event="Onboarding Skip Genuine Check" |
|
|
|
onClick={() => nextStep()} |
|
|
@ -38,9 +40,6 @@ export function GenuineCheckUnavailableFooter({ |
|
|
|
> |
|
|
|
{t('common.skipThisStep')} |
|
|
|
</Button> |
|
|
|
<Button onClick={nextStep} disabled primary> |
|
|
|
{t('common.continue')} |
|
|
|
</Button> |
|
|
|
</Box> |
|
|
|
</OnboardingFooterWrapper> |
|
|
|
) |
|
|
|