We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c9127b commit e945636Copy full SHA for e945636
src/components/DropdownTerms/index.jsx
@@ -4,7 +4,7 @@
4
import React, { useState, useRef, useEffect } from "react";
5
import PT from "prop-types";
6
import _ from "lodash";
7
-import { Creatable } from "react-select";
+import Select from "react-select";
8
import iconDown from "assets/icons/dropdown-arrow.png";
9
import config from "../../../config";
10
import "./styles.scss";
@@ -100,7 +100,7 @@ function DropdownTerms({
100
}`}
101
>
102
<div styleName="relative">
103
- <Creatable
+ <Select
104
onOpen={() => setFocused(true)}
105
onClose={() => setFocused(false)}
106
autosize={false}
0 commit comments