Skip to content

Commit

Permalink
fix: review
Browse files Browse the repository at this point in the history
  • Loading branch information
TeddyRoncin committed Nov 5, 2024
1 parent 4e0dc90 commit 5efe320
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
5 changes: 1 addition & 4 deletions src/components/UI/Select.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,7 @@ export default function Select<Choices extends string = string>({
return (
<select
value={value}
onChange={(event) => {
console.log(event.currentTarget.value);
onSelect(event.currentTarget.value as Choices);
}}
onChange={(event) => onSelect(event.currentTarget.value as Choices)}
className={`${styles.select} ${className}`}>
{options.map((option) => (
<option key={option.id} value={option.id}>
Expand Down
2 changes: 1 addition & 1 deletion src/components/filteredSearch/FilteredSearch.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@

.filter {
margin: 2rem 0;
overflow-y: scroll;
//overflow-y: scroll;
}
}

0 comments on commit 5efe320

Please sign in to comment.