Skip to content

Commit

Permalink
refactor: console.log 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
wildcatco committed Aug 24, 2023
1 parent 5fe9bff commit 8390b54
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/common/components/ui/inputs/TextInput/TextInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ export function TextInput({
};

const handleReset = () => {
console.log('here');
setValue('');
inputRef.current?.focus();
onChange && onChange('');
Expand Down
1 change: 0 additions & 1 deletion src/common/hooks/useUpdate.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ export function useUpdate() {

r.update();
setInterval(() => {
console.log('interval');
r.update();
}, UPDATE_INTERVAL);
},
Expand Down

0 comments on commit 8390b54

Please sign in to comment.