Browse Source
fix(storybook): set fetchingSeed when generating seed
next
Tom Kirkpatrick
6 years ago
No known key found for this signature in database
GPG Key ID: 72203A8EC5967EA8
1 changed files with
2 additions and
0 deletions
-
stories/containers/onboarding.stories.js
|
@ -51,6 +51,7 @@ const resetOnboarding = () => { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
const fetchSeed = async () => { |
|
|
const fetchSeed = async () => { |
|
|
|
|
|
store.set({ fetchingSeed: true }) |
|
|
await delay(1000) |
|
|
await delay(1000) |
|
|
store.set({ |
|
|
store.set({ |
|
|
seed: [ |
|
|
seed: [ |
|
@ -80,6 +81,7 @@ const fetchSeed = async () => { |
|
|
'fix' |
|
|
'fix' |
|
|
] |
|
|
] |
|
|
}) |
|
|
}) |
|
|
|
|
|
store.set({ fetchingSeed: false }) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
const startLnd = async () => { |
|
|
const startLnd = async () => { |
|
|