Remove console log

This commit is contained in:
Tom Coleman 2021-11-26 16:17:09 +11:00
parent 163633406d
commit 809b59efd8

View File

@ -169,7 +169,6 @@ const Story: FunctionComponent<StoryProps> = (props) => {
// Certain frameworks (i.e.angular) don't actually render the component in the very first
// React render cycle, so we need to wait for the framework to actually do that
Promise.all([storyFnRan, rendered]).then(() => {
console.log('called story fn', story.id);
channel.emit(Events.STORY_RENDERED, storyId);
});
}