chore: remove unused imports (#1534)

This commit is contained in:
Caleb
2018-07-28 14:33:42 -06:00
committed by Shawn Erquhart
parent 99d4b2b50c
commit 4f6e8cea44
44 changed files with 33 additions and 83 deletions

View File

@ -1,9 +1,9 @@
import React from 'react';
import PropTypes from 'prop-types';
import { injectGlobal, css } from 'react-emotion';
import { injectGlobal } from 'react-emotion';
import Autosuggest from 'react-autosuggest';
import uuid from 'uuid/v4';
import { List, Map } from 'immutable';
import { List } from 'immutable';
import { debounce } from 'lodash';
import { Loader, components } from 'netlify-cms-ui-default';
@ -45,10 +45,6 @@ injectGlobal`
}
`
function escapeRegexCharacters(str) {
return str.replace(/[.*+?^${}()|[\]\\]/g, '\\$&');
}
export default class RelationControl extends React.Component {
static propTypes = {
onChange: PropTypes.func.isRequired,