From 08e516a2eff9a884d0181cb1d2b339057bf87cc6 Mon Sep 17 00:00:00 2001 From: Tom Kirkpatrick Date: Thu, 19 Jul 2018 23:05:31 +0200 Subject: [PATCH] fix(onboarding): default to create new wallet It is more common for new users to create a new wallet than to import an existing one. Make the "create new wallet" option the default selected value in the onboarding process. --- app/reducers/onboarding.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/reducers/onboarding.js b/app/reducers/onboarding.js index 17789eb7..2498b642 100644 --- a/app/reducers/onboarding.js +++ b/app/reducers/onboarding.js @@ -424,7 +424,7 @@ const initialState = { recoverSeedInput: [], // step where the user decides whether they want a newly created seed or to import an existing one signupForm: { - create: false, + create: true, import: false },