Skip to content

Commit 0d440b7

Browse files
committed
fix: formatting
1 parent a154830 commit 0d440b7

File tree

3 files changed

+28
-26
lines changed

3 files changed

+28
-26
lines changed

examples/expo-example/components/LoginDocsExample/Button/Button.stories.tsx

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -13,50 +13,50 @@ export default meta;
1313
type Story = StoryObj<typeof meta>;
1414

1515
export const Primary: Story = {
16-
args: {
17-
title: 'Sign In'
16+
args: {
17+
title: 'Sign In',
1818
},
1919
};
2020

2121
export const Secondary: Story = {
22-
args: {
23-
title: 'Create Account',
24-
variant: 'secondary'
22+
args: {
23+
title: 'Create Account',
24+
variant: 'secondary',
2525
},
2626
};
2727

2828
export const Loading: Story = {
29-
args: {
30-
title: 'Sign In',
31-
loading: true
29+
args: {
30+
title: 'Sign In',
31+
loading: true,
3232
},
3333
};
3434

3535
export const Disabled: Story = {
36-
args: {
37-
title: 'Sign In',
38-
disabled: true
36+
args: {
37+
title: 'Sign In',
38+
disabled: true,
3939
},
4040
};
4141

4242
export const SecondaryLoading: Story = {
43-
args: {
44-
title: 'Create Account',
43+
args: {
44+
title: 'Create Account',
4545
variant: 'secondary',
46-
loading: true
46+
loading: true,
4747
},
4848
};
4949

5050
export const SecondaryDisabled: Story = {
51-
args: {
52-
title: 'Create Account',
51+
args: {
52+
title: 'Create Account',
5353
variant: 'secondary',
54-
disabled: true
54+
disabled: true,
5555
},
5656
};
5757

5858
export const LongTitle: Story = {
59-
args: {
60-
title: 'This is a very long button title that might affect layout'
59+
args: {
60+
title: 'This is a very long button title that might affect layout',
6161
},
62-
};
62+
};

examples/expo-example/components/LoginDocsExample/LoginForm/LoginForm.stories.tsx

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ export const WithErrors: Story = {
2222
};
2323

2424
export const Loading: Story = {
25-
args: {
26-
loading: true
25+
args: {
26+
loading: true,
2727
},
2828
};
2929

@@ -41,7 +41,9 @@ export const PasswordErrorOnly: Story = {
4141

4242
export const LongErrors: Story = {
4343
args: {
44-
emailError: 'The email address you entered is not valid. Please check the format and try again.',
45-
passwordError: 'Your password must be at least 8 characters long and contain both letters and numbers for security.',
44+
emailError:
45+
'The email address you entered is not valid. Please check the format and try again.',
46+
passwordError:
47+
'Your password must be at least 8 characters long and contain both letters and numbers for security.',
4648
},
47-
};
49+
};

examples/expo-example/components/LoginDocsExample/TextInput/TextInput.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,4 +74,4 @@ export const EmptyState: Story = {
7474
label: '',
7575
placeholder: '',
7676
},
77-
};
77+
};

0 commit comments

Comments
 (0)