Skip to content

Commit

Permalink
chore: remove stray log
Browse files Browse the repository at this point in the history
  • Loading branch information
wp-aberg committed Aug 15, 2024
1 parent 33ef45a commit 2e290eb
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion packages/kit/src/input-search/InputSearchInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ export const InputSearchInput = React.forwardRef<
const handleChange = (event: React.ChangeEvent<HTMLInputElement>) => {
if (rest.onChange) rest.onChange(event);
if (inputProps.onChange) inputProps.onChange(event);
console.log("InputSearchInput handleChange", event.target.value);
};

const [tempText, setTempText] = React.useState<string>();
Expand Down

0 comments on commit 2e290eb

Please sign in to comment.