mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 04:40:37 +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>;
|
} as ComponentMeta<typeof ChatModeratorNotification>;
|
||||||
|
|
||||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||||||
const Template: ComponentStory<typeof ChatModeratorNotification> = args => (
|
const Template: ComponentStory<typeof ChatModeratorNotification> = (args: object) => (
|
||||||
<ChatModeratorNotification {...args} />
|
<ChatModeratorNotification {...args} />
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@ export default {
|
||||||
parameters: {},
|
parameters: {},
|
||||||
} as ComponentMeta<typeof FollowerCollection>;
|
} as ComponentMeta<typeof FollowerCollection>;
|
||||||
|
|
||||||
const Template: ComponentStory<typeof FollowerCollection> = args => (
|
const Template: ComponentStory<typeof FollowerCollection> = (args: object) => (
|
||||||
<FollowerCollection {...args} />
|
<FollowerCollection {...args} />
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue