Skip to content

Commit f37ef9e

Browse files
committed
fix storybook
1 parent e2128e6 commit f37ef9e

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

site/src/pages/UserSettingsPage/SecurityPage/SecurityForm.stories.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,14 @@ type Story = StoryObj<typeof SecurityForm>;
1616
export const Example: Story = {
1717
args: {
1818
isLoading: false,
19+
onPasswordChange: (password: string) => {},
1920
},
2021
};
2122

2223
export const Loading: Story = {
2324
args: {
2425
isLoading: true,
26+
onPasswordChange: (password: string) => {},
2527
},
2628
};
2729

@@ -36,5 +38,6 @@ export const WithError: Story = {
3638
},
3739
],
3840
}),
41+
onPasswordChange: (password: string) => {},
3942
},
4043
};

0 commit comments

Comments
 (0)