Skip to content

Commit 861e56c

Browse files
committed
fix(storybook): useArgs 구조 분해 방식 수정 - lint 경고 제거
1 parent 4fcc846 commit 861e56c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/stories/components/EgovRadioButtonGroup.stories.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export default {
2222
};
2323

2424
export const Default = (args) => {
25-
const [{ setValue }, updateArgs] = useArgs();
25+
const [, updateArgs] = useArgs();
2626

2727
const handleChange = (newValue) => {
2828
updateArgs({ setValue: newValue });

0 commit comments

Comments
 (0)