Skip to content

Commit

Permalink
fix: linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
PHILLIPS71 committed May 4, 2024
1 parent e218e06 commit 5f2d80b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import type { Meta, StoryFn } from '@storybook/react'

import { checkbox } from '@giantnodes/theme'

import { Checkbox } from '@/components/checkbox'
import Card from '@/components/card/Card'
import { Checkbox } from '@/components/checkbox'

const Component: Meta<typeof Checkbox> = {
title: 'Components/Checkbox',
Expand Down
6 changes: 3 additions & 3 deletions packages/react/src/components/select/Select.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Default.args = {

export const UsingSize: StoryFn<SelectProps<object>> = (args) => (
<div className="flex flex-col gap-2">
<Select {...args} size="sm" placeholder="sm">
<Select {...args} placeholder="sm" size="sm">
<Select.Option>Aardvark</Select.Option>
<Select.Option>Cat</Select.Option>
<Select.Option>Dog</Select.Option>
Expand All @@ -51,7 +51,7 @@ export const UsingSize: StoryFn<SelectProps<object>> = (args) => (
<Select.Option>Snake</Select.Option>
</Select>

<Select {...args} size="md" placeholder="md">
<Select {...args} placeholder="md" size="md">
<Select.Option>Aardvark</Select.Option>
<Select.Option>Cat</Select.Option>
<Select.Option>Dog</Select.Option>
Expand All @@ -60,7 +60,7 @@ export const UsingSize: StoryFn<SelectProps<object>> = (args) => (
<Select.Option>Snake</Select.Option>
</Select>

<Select {...args} size="lg" placeholder="lg">
<Select {...args} placeholder="lg" size="lg">
<Select.Option>Aardvark</Select.Option>
<Select.Option>Cat</Select.Option>
<Select.Option>Dog</Select.Option>
Expand Down

0 comments on commit 5f2d80b

Please sign in to comment.