Fix build error with updated typescript

This commit is contained in:
Gabe Kangas 2022-08-15 18:58:34 -07:00
parent 00f40ed7b8
commit 052a669c2c
No known key found for this signature in database
GPG key ID: 9A56337728BC81EA
2 changed files with 2 additions and 2 deletions

View file

@ -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} />
);

View file

@ -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} />
);