From eaec140e1880f258566a4e9133f3928f75a66e4f Mon Sep 17 00:00:00 2001 From: Alex Date: Wed, 14 Sep 2022 11:13:58 -0500 Subject: [PATCH] lint --- ui/store/actions.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ui/store/actions.js b/ui/store/actions.js index 170882cd306a..b297d28eb149 100644 --- a/ui/store/actions.js +++ b/ui/store/actions.js @@ -3262,9 +3262,9 @@ export function getContractMethodData(data = '') { } const { knownMethodData } = getState().metamask; if ( - (knownMethodData && - knownMethodData[fourBytePrefix] && - Object.keys(knownMethodData[fourBytePrefix]).length !== 0) + knownMethodData && + knownMethodData[fourBytePrefix] && + Object.keys(knownMethodData[fourBytePrefix]).length !== 0 ) { return Promise.resolve(knownMethodData[fourBytePrefix]); }