diff --git a/libs/components/src/avatar/avatar.stories.ts b/libs/components/src/avatar/avatar.stories.ts index 7fcb883cfee..724dc5ec0eb 100644 --- a/libs/components/src/avatar/avatar.stories.ts +++ b/libs/components/src/avatar/avatar.stories.ts @@ -6,6 +6,7 @@ export default { title: "Component Library/Avatar", component: AvatarComponent, args: { + id: undefined, text: "Walt Walterson", size: "default", }, @@ -28,13 +29,11 @@ Default.args = { export const Large = Template.bind({}); Large.args = { - ...Default.args, size: "large", }; export const Small = Template.bind({}); Small.args = { - ...Default.args, size: "small", }; @@ -45,7 +44,6 @@ LightBackground.args = { export const Border = Template.bind({}); Border.args = { - ...Default.args, border: true, };