diff --git a/source/sites/mon-entreprise.fr/pages/Company/Find.js b/source/sites/mon-entreprise.fr/pages/Company/Find.js index 1afca0c2f..368f859b3 100644 --- a/source/sites/mon-entreprise.fr/pages/Company/Find.js +++ b/source/sites/mon-entreprise.fr/pages/Company/Find.js @@ -13,19 +13,8 @@ import ReactSelect from 'react-select' import 'react-select/dist/react-select.css' import './Find.css' import { CompanyDetails as Company } from './YourCompany' -import type { SitePaths } from 'Components/utils/withSitePaths' -import type { TFunction } from 'react-i18next' -import type { RouterHistory } from 'react-router' -type State = { - input: ?{ [string]: string } -} type OwnProps = {} -type Props = { - history: RouterHistory, - t: TFunction, - sitePaths: SitePaths -} const isSIREN = (input: string) => input.match(/^ *([\d] *){9}$/) const isSIRET = (input: string) => input.match(/^ *([\d] *){14}$/) @@ -66,6 +55,7 @@ async function getOptions(input: string) { } return { options: etablissements } } catch (error) { + // eslint-disable-next-line no-console console.log( "Erreur dans la recherche d'entreprise à partir du SIREN / nom", error