We don't have to have an argtype for every arg

This commit is contained in:
Tom Coleman 2022-09-18 13:28:09 +10:00
parent 2068c3c254
commit 7e66592949

View File

@ -61,7 +61,7 @@ const cleanArgsDecorator: DecoratorFunction<AngularFramework> = (storyFn, contex
const argType = context.argTypes[key];
// Only keeps args with a control or an action in argTypes
if (argType.action || argType.control) {
if (argType?.action || argType?.control) {
return { ...obj, [key]: arg };
}
return obj;