1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 01:47:00 +01:00

Ensure seed phrase backup only shows up for new users (#6975)

This commit is contained in:
Dan J Miller 2019-08-08 09:08:41 -02:30 committed by GitHub
parent 14e31cb9be
commit da7fe65599
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,7 +23,7 @@ class OnboardingController {
*/
constructor (opts = {}) {
const initState = extend({
seedPhraseBackedUp: null,
seedPhraseBackedUp: true,
}, opts.initState)
this.store = new ObservableStore(initState)
}