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

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