From 800c5f0187613fdfb0082d75c77e46c07425c506 Mon Sep 17 00:00:00 2001 From: matheusps Date: Wed, 18 Mar 2020 20:31:08 -0300 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=90=9B=20Dropzone=20eslint=20issue?= =?UTF-8?q?s?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- react/components/Dropzone/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/react/components/Dropzone/index.js b/react/components/Dropzone/index.js index 095bf6490..65d642e89 100755 --- a/react/components/Dropzone/index.js +++ b/react/components/Dropzone/index.js @@ -135,11 +135,11 @@ class Dropzone extends PureComponent { } Dropzone.defaultProps = { - onDropRejected: () => {}, + onDropRejected: () => null, children: null, icon: null, isLoading: false, - onFileReset: () => {}, + onFileReset: () => null, multiple: false, }