From 74f58617b58bbd8b1391886b3cbd9793aeb5f2da Mon Sep 17 00:00:00 2001 From: SeonghunYang Date: Sun, 17 Mar 2024 07:03:05 +0000 Subject: [PATCH] refactor: Remove console.log statement in SelectRoot component --- app/ui/view/molecule/select/select-root.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/ui/view/molecule/select/select-root.tsx b/app/ui/view/molecule/select/select-root.tsx index ea2aca84..f44d1587 100644 --- a/app/ui/view/molecule/select/select-root.tsx +++ b/app/ui/view/molecule/select/select-root.tsx @@ -38,8 +38,6 @@ export const SelectRoot = React.forwardRef(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,