Skip to content

Commit

Permalink
fix: Select - remove comments
Browse files Browse the repository at this point in the history
  • Loading branch information
daniilminin1990 committed Jun 27, 2024
1 parent 9ec6558 commit 9185c0e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/components/ui/Select/Select.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,9 @@ type Props = {
disabled?: boolean
onValueChange?: (items: string) => void
selectOptions: selectOptionsType[]
value?: string // РАНЬШЕ БЫЛ placeholder
value?: string
}
const SelectUI = ({ className, disabled, onValueChange, selectOptions, value }: Props) => {
// const placeholderText = placeholder || selectOptions[0].text
const selectClasses = {
button: clsx(className && s.button, s.className),
content: clsx(s.selectContent),
Expand Down

0 comments on commit 9185c0e

Please sign in to comment.