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