Skip to content

Commit

Permalink
Fixing lint warning in confirm-approve.stories.js (#11185)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanml authored May 26, 2021
1 parent 3578405 commit 8e3bffc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/pages/confirm-approve/confirm-approve.stories.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const PageSet = ({ children }) => {
store.dispatch(
updateMetamaskState({ currentNetworkTxList: [transaction] }),
);
}, [origin]);
}, [origin, transaction]);

useEffect(() => {
store.dispatch(
Expand All @@ -47,7 +47,7 @@ const PageSet = ({ children }) => {
},
}),
);
}, [domainIconUrl]);
}, [domainIconUrl, origin]);

const params = useParams();
params.id = txId;
Expand Down

0 comments on commit 8e3bffc

Please sign in to comment.