diff --git a/src/components/Select/index.js b/src/components/Select/index.js
index 4b7c387f..c872d100 100644
--- a/src/components/Select/index.js
+++ b/src/components/Select/index.js
@@ -1,7 +1,7 @@
import React from 'react';
import PropTypes from 'prop-types';
-import Select from 'react-select';
-import AsyncSelect from 'react-select/lib/Async';
+import ReactSelect from 'react-select';
+import ReactAsyncSelect from 'react-select/lib/Async';
import colors from 'config/colors';
const styles = isSearchable => ({
@@ -58,21 +58,16 @@ const styles = isSearchable => ({
}),
});
-const SelectWrapper = props => (
-
- {props.isAsync &&
}
- {!props.isAsync &&
}
-
-);
-
-SelectWrapper.propTypes = {
+const propTypes = {
isAsync: PropTypes.bool,
isSearchable: PropTypes.bool,
};
+const Select = props => ;
+const AsyncSelect = props => ;
+Select.propTypes = propTypes;
+AsyncSelect.propTypes = propTypes;
-SelectWrapper.defaultProps = {
- isAsync: false,
- isSearchable: false,
+export {
+ Select,
+ AsyncSelect,
};
-
-export default SelectWrapper;
diff --git a/src/views/Landing/components/InstallBridge/index.js b/src/views/Landing/components/InstallBridge/index.js
index 288b5abf..b0ceca27 100644
--- a/src/views/Landing/components/InstallBridge/index.js
+++ b/src/views/Landing/components/InstallBridge/index.js
@@ -5,7 +5,7 @@ import styled from 'styled-components';
import colors from 'config/colors';
import { FONT_SIZE, FONT_WEIGHT } from 'config/variables';
import installers from 'constants/bridge';
-import Select from 'components/Select';
+import { Select } from 'components/Select';
import Link from 'components/Link';
import Button from 'components/Button';
import Loader from 'components/Loader';