Skip to content

Commit 759410f

Browse files
committed
feat(QYOG-162): 주석, console.log 제거
1 parent c279499 commit 759410f

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

src/components/Design/SelectBox/SelectBox.stories.tsx

-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ interface OptionInterface {
1414
}
1515

1616
function setSelectOption(result: OptionInterface) {
17-
console.log(result);
1817
return result;
1918
}
2019

src/components/Design/SelectBox/SelectBox.tsx

-3
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,6 @@ export default function SelectBox({
3030
const [selectedIndex, setSelectedIndex] = useState<number>(-1);
3131
const [isChanged, setIsChanged] = useState<boolean>(false);
3232

33-
//마지막에 밖에다 빼줘야되는 정보
34-
// const returnOption:OptionInterface = options[selectedIndex]
35-
3633
function handleOnChangeOption(e: any) {
3734
setSelectedName(e.target.innerHTML);
3835
setSelectedIndex(e.target.id);

0 commit comments

Comments
 (0)