Browse Source

Fix build error with updated typescript

pull/2043/head
Gabe Kangas 3 years ago
parent
commit
052a669c2c
No known key found for this signature in database
GPG Key ID: 9A56337728BC81EA
  1. 2
      web/stories/ChatModeratorNotification.stories.tsx
  2. 2
      web/stories/Followercollection.stories.tsx

2
web/stories/ChatModeratorNotification.stories.tsx

@ -9,7 +9,7 @@ export default { @@ -9,7 +9,7 @@ export default {
} as ComponentMeta<typeof ChatModeratorNotification>;
// eslint-disable-next-line @typescript-eslint/no-unused-vars
const Template: ComponentStory<typeof ChatModeratorNotification> = args => (
const Template: ComponentStory<typeof ChatModeratorNotification> = (args: object) => (
<ChatModeratorNotification {...args} />
);

2
web/stories/Followercollection.stories.tsx

@ -8,7 +8,7 @@ export default { @@ -8,7 +8,7 @@ export default {
parameters: {},
} as ComponentMeta<typeof FollowerCollection>;
const Template: ComponentStory<typeof FollowerCollection> = args => (
const Template: ComponentStory<typeof FollowerCollection> = (args: object) => (
<FollowerCollection {...args} />
);

Loading…
Cancel
Save