Clean out the store if configure fails

This commit is contained in:
Tom Coleman 2018-05-08 16:19:11 +10:00
parent 3c1708b452
commit 1582a91074

View File

@ -46,6 +46,10 @@ export default class ConfigApi {
// If we are accessing the site, but the error is not fixed yet.
// There we can render the error.
this._renderError(error);
// Clear out the store as chances as only some of the stories will have
// made it in before the error was thrown
this._storyStore.clean();
}
}
};