Update name as per suggestion

This commit is contained in:
Tom Coleman 2021-04-22 22:46:55 +10:00
parent 9c2a1c67a1
commit 3934b7c60d

View File

@ -16,8 +16,8 @@ const bindWithContext = (
getStoryContext: () => StoryContext
): PartialStoryFn =>
// (NOTE: You cannot override the parameters key, it is fixed)
({ parameters, ...innerContext }: StoryContextUpdate = {}) =>
storyFn({ ...getStoryContext(), ...innerContext });
({ parameters, ...contextUpdate }: StoryContextUpdate = {}) =>
storyFn({ ...getStoryContext(), ...contextUpdate });
export const decorateStory = (
storyFn: LegacyStoryFn,