From 052a669c2c68b016d95bb9414ecbdca3bfe64055 Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Mon, 15 Aug 2022 18:58:34 -0700 Subject: [PATCH] Fix build error with updated typescript --- web/stories/ChatModeratorNotification.stories.tsx | 2 +- web/stories/Followercollection.stories.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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) => ( );