Skip to content

Commit

Permalink
fix: build 시 발생하는 에러 수정 (#54)
Browse files Browse the repository at this point in the history
- 스토리북 className -> classTitle
- quizTitle warning 제거
  • Loading branch information
chan-byeong authored Nov 12, 2024
1 parent 382bee4 commit b84bbb9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions packages/FE/src/pages/quiz-create/ui/QuizCreateSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ export default function QuizCreateSection() {
<CustomButton
label="퀴즈 발행하기"
onClick={() => {
console.log(quizTitle);
console.log('퀴즈 발행하기');
}}
/>
Expand Down
4 changes: 2 additions & 2 deletions packages/FE/src/shared/ui/header/Header.stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ const meta = {
layout: 'centered',
},
tags: ['autodocs'],
args: { className: 'Class Name' },
args: { classTitle: 'Class Name' },
} satisfies Meta<typeof Header>;

export default meta;
type Story = StoryObj<typeof meta>;

export const Default: Story = {
args: {
className: '클래스명',
classTitle: '클래스명',
},
};

0 comments on commit b84bbb9

Please sign in to comment.