1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Fixing lint warning in confirm-approve.stories.js (#11185)

This commit is contained in:
ryanml 2021-05-26 09:17:08 -07:00 committed by GitHub
parent 3578405021
commit 8e3bffc825
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -35,7 +35,7 @@ const PageSet = ({ children }) => {
store.dispatch(
updateMetamaskState({ currentNetworkTxList: [transaction] }),
);
}, [origin]);
}, [origin, transaction]);
useEffect(() => {
store.dispatch(
@ -47,7 +47,7 @@ const PageSet = ({ children }) => {
},
}),
);
}, [domainIconUrl]);
}, [domainIconUrl, origin]);
const params = useParams();
params.id = txId;