diff --git a/web/stories/ChatModeratorNotification.stories.tsx b/web/stories/ChatModeratorNotification.stories.tsx index 1ecf35500..35d3950b3 100644 --- a/web/stories/ChatModeratorNotification.stories.tsx +++ b/web/stories/ChatModeratorNotification.stories.tsx @@ -9,7 +9,7 @@ export default { } as ComponentMeta; // eslint-disable-next-line @typescript-eslint/no-unused-vars -const Template: ComponentStory = args => ( +const Template: ComponentStory = (args: object) => ( ); diff --git a/web/stories/Followercollection.stories.tsx b/web/stories/Followercollection.stories.tsx index c07184f84..095ed84f1 100644 --- a/web/stories/Followercollection.stories.tsx +++ b/web/stories/Followercollection.stories.tsx @@ -8,7 +8,7 @@ export default { parameters: {}, } as ComponentMeta; -const Template: ComponentStory = args => ( +const Template: ComponentStory = (args: object) => ( );