Skip to content

Commit

Permalink
refactor: Remove console.log statement in SelectRoot component
Browse files Browse the repository at this point in the history
  • Loading branch information
seonghunYang committed Mar 17, 2024
1 parent e20d8fc commit 74f5861
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions app/ui/view/molecule/select/select-root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,6 @@ export const SelectRoot = React.forwardRef<HTMLInputElement, SelectProps>(functi
const childrenArray = React.Children.toArray(children);
const Icon = icon;

console.log(selectedValue);

const selectedPlaceholder = useMemo(() => {
const reactElementChildren = React.Children.toArray(children).filter(
(child) => React.isValidElement(child) && child.props.value === selectedValue,
Expand Down

0 comments on commit 74f5861

Please sign in to comment.