Skip to content

Commit

Permalink
fix: build error
Browse files Browse the repository at this point in the history
  • Loading branch information
jw-r committed Dec 3, 2024
1 parent 6305b03 commit 475701f
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const meta: Meta<typeof CategoryDrawer> = {
component: CategoryDrawer,
tags: ['autodocs'],
argTypes: {
interestedCategory: { control: 'text', description: '관심분야 카테고리 텍스트' },
interestedCategories: { control: 'text', description: '관심분야 카테고리 텍스트' },
},
decorators: [
(Story) => (
Expand All @@ -23,12 +23,12 @@ type Story = StoryObj<typeof CategoryDrawer>

export const Default: Story = {
args: {
interestedCategory: 'IT/프로그래밍',
interestedCategories: ['IT/프로그래밍'],
},
}

export const NoCategory: Story = {
args: {
interestedCategory: undefined,
interestedCategories: [],
},
}

0 comments on commit 475701f

Please sign in to comment.