Lower the priority of the without password story.

This commit is contained in:
Joseph Garrone
2024-06-03 23:25:37 +02:00
parent b780d7136e
commit 5741cd1b2b

View File

@ -20,16 +20,6 @@ export const Default: Story = {
render: () => <PageStory /> render: () => <PageStory />
}; };
export const WithoutPasswordField: Story = {
render: () => (
<PageStory
kcContext={{
realm: { password: false }
}}
/>
)
};
export const WithoutRegistration: Story = { export const WithoutRegistration: Story = {
render: () => ( render: () => (
<PageStory <PageStory
@ -183,3 +173,13 @@ export const WithSocialProviders: Story = {
/> />
) )
}; };
export const WithoutPasswordField: Story = {
render: () => (
<PageStory
kcContext={{
realm: { password: false }
}}
/>
)
};