Skip to content

Commit 6fa2041

Browse files
fix: resolve linting issues in select-alignment story
- Remove unused React import - Fix formatting to match Biome style guide - Ensure single-line JSX for simple components
1 parent e8c29c7 commit 6fa2041

1 file changed

Lines changed: 1 addition & 8 deletions

File tree

apps/docs/src/ui/select-alignment.stories.tsx

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import type { Meta, StoryObj } from '@storybook/react-vite';
22
import { expect, userEvent, within } from '@storybook/test';
3-
import * as React from 'react';
43
import { Select, type SelectOption } from '@lambdacurry/forms/ui/select';
54

65
const meta: Meta<typeof Select> = {
@@ -30,11 +29,7 @@ export const RightAlignedWithEndContent: Story = {
3029
<div className="w-[480px]">
3130
<div className="flex justify-end">
3231
<div className="w-[280px]">
33-
<Select
34-
options={OPTIONS}
35-
placeholder="Choose a state"
36-
contentProps={{ align: 'end' }}
37-
/>
32+
<Select options={OPTIONS} placeholder="Choose a state" contentProps={{ align: 'end' }} />
3833
</div>
3934
</div>
4035
</div>
@@ -74,5 +69,3 @@ export const RightAlignedWithEndContent: Story = {
7469
});
7570
},
7671
};
77-
78-

0 commit comments

Comments
 (0)