Skip to content

Commit

Permalink
chore: remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
casperiv0 committed Jan 28, 2023
1 parent 6596bf8 commit 3029c38
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions packages/ui/src/components/fields/select-field.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,12 +79,6 @@ export function SelectField<T extends SelectValue>(props: SelectFieldProps<T>) {
const selectedItems = selectionMode === "multiple" ? state.selectedItems : null;
const selectedItem = selectionMode === "single" ? state.selectedItems?.[0] : null;

console.log({
isOpen: state.isOpen,
isFocused: state.isFocused,
true: state.isOpen || state.isFocused,
});

return (
<ModalProvider>
<div className={classNames("flex flex-col mb-3", props.className)}>
Expand Down

0 comments on commit 3029c38

Please sign in to comment.