Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
adonesky1 committed Sep 14, 2022
1 parent 5301884 commit eaec140
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ui/store/actions.js
Original file line number Diff line number Diff line change
Expand Up @@ -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]);
}
Expand Down

0 comments on commit eaec140

Please sign in to comment.