From da7fe65599d4a1d0f779c826b862a9482f20fd40 Mon Sep 17 00:00:00 2001 From: Dan J Miller Date: Thu, 8 Aug 2019 09:08:41 -0230 Subject: Ensure seed phrase backup only shows up for new users (#6975) --- app/scripts/controllers/onboarding.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app') diff --git a/app/scripts/controllers/onboarding.js b/app/scripts/controllers/onboarding.js index 18fec4993..a29c8407a 100644 --- a/app/scripts/controllers/onboarding.js +++ b/app/scripts/controllers/onboarding.js @@ -23,7 +23,7 @@ class OnboardingController { */ constructor (opts = {}) { const initState = extend({ - seedPhraseBackedUp: null, + seedPhraseBackedUp: true, }, opts.initState) this.store = new ObservableStore(initState) } -- cgit