Skip to content

Commit e945636

Browse files
authored
fixes #226 (#290)
1 parent 9c9127b commit e945636

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/DropdownTerms/index.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import React, { useState, useRef, useEffect } from "react";
55
import PT from "prop-types";
66
import _ from "lodash";
7-
import { Creatable } from "react-select";
7+
import Select from "react-select";
88
import iconDown from "assets/icons/dropdown-arrow.png";
99
import config from "../../../config";
1010
import "./styles.scss";
@@ -100,7 +100,7 @@ function DropdownTerms({
100100
}`}
101101
>
102102
<div styleName="relative">
103-
<Creatable
103+
<Select
104104
onOpen={() => setFocused(true)}
105105
onClose={() => setFocused(false)}
106106
autosize={false}

0 commit comments

Comments
 (0)