Skip to content

Commit

Permalink
chore: 사용하지 않는 console.log 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
soi-ha committed Aug 20, 2024
1 parent 5791da7 commit 8e0f801
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/hooks/useDynamicInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const useDynamicInput = (validateFunc: (name: string) => ValidateResult): Return

const handleInputChange = (index: number, event: React.ChangeEvent<HTMLInputElement>) => {
const {value} = event.target;
console.log(value);

makeNewInputWhenFirstCharacterInput(index, value);
handleChange(index, value);
};
Expand Down

0 comments on commit 8e0f801

Please sign in to comment.