diff --git a/code/frameworks/angular/src/client/decorateStory.ts b/code/frameworks/angular/src/client/decorateStory.ts index 21f38704b64..39237c2b2fb 100644 --- a/code/frameworks/angular/src/client/decorateStory.ts +++ b/code/frameworks/angular/src/client/decorateStory.ts @@ -61,7 +61,7 @@ const cleanArgsDecorator: DecoratorFunction = (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;