Skip to content

Commit

Permalink
let to const
Browse files Browse the repository at this point in the history
  • Loading branch information
KobeZ123 committed Jan 25, 2024
1 parent 790bbe9 commit c16f9da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/frontend/components/Form/Select.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export const PlanSelect: React.FC<PlanSelectProps> = ({
noValueOptionLabel,
useFuzzySearch,
}) => {
let filterOptions = useFuzzySearch
const filterOptions = useFuzzySearch
? (option: FilterOptionOption<any>, inputValue: string) => {
if (inputValue.length !== 0) {
const list = new Fuse(options, {
Expand Down

0 comments on commit c16f9da

Please sign in to comment.