Skip to content

Commit

Permalink
Undo small change
Browse files Browse the repository at this point in the history
  • Loading branch information
kasperpeulen committed Apr 24, 2023
1 parent 92a0f79 commit 90f7eee
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions code/renderers/vue3/src/decorateStory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,6 @@ export function decorateStory(
const innerStory = () => h(story!);
return prepare(decoratedStory, innerStory) as VueRenderer['storyResult'];
},
(context) => {
return prepare(storyFn(context)) as LegacyStoryFn<VueRenderer>;
}
(context) => prepare(storyFn(context)) as LegacyStoryFn<VueRenderer>
);
}

0 comments on commit 90f7eee

Please sign in to comment.