# I have component which is using spread syntax to add props to the component. When I'm using decorator which also takes some args, these args are also included to the story component. I would like to clear those in my decorator.
# Hi! You can manipulate args in your decorator like so: const withManipulatedArgs = (story, { args, ...context }) => { const { decoratorSpecificArg, ...restArgs } = args; // Do something with `decoratorSpecificArg` return story({ args: restArgs, ...context }); }