Fix build error with updated typescript
This commit is contained in:
@@ -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} />
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user