Browse Source

fix(storybook): set fetchingSeed when generating seed

next
Tom Kirkpatrick 6 years ago
parent
commit
bf4e3c00f0
No known key found for this signature in database GPG Key ID: 72203A8EC5967EA8
  1. 2
      stories/containers/onboarding.stories.js

2
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 () => {

Loading…
Cancel
Save