mirror of
https://github.com/owncast/owncast.git
synced 2024-11-21 20:28:15 +03:00
Fix build error with updated typescript
This commit is contained in:
parent
00f40ed7b8
commit
052a669c2c
2 changed files with 2 additions and 2 deletions
|
@ -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} />
|
||||
);
|
||||
|
||||
|
|
|
@ -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…
Reference in a new issue