Merge pull request #5068 from storybooks/disable-persist-warning

Disabling warning if story is not set in async storage.
This commit is contained in:
Gytis Vinclovas 2018-12-20 16:24:06 +02:00 committed by GitHub
commit 30144da395
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -198,14 +198,12 @@ export default class Preview {
_checkStory(selection) {
if (!selection || typeof selection !== 'object' || !selection.kind || !selection.story) {
console.warn('invalid storybook selection'); // eslint-disable-line no-console
return null;
}
const story = this._getStory(selection);
if (story.storyFn === null) {
console.warn('invalid storybook selection'); // eslint-disable-line no-console
return null;
}