fix(swap): revert the change to reload query parameters on every url change

This commit is contained in:
Moody Salem 2020-07-09 10:35:14 -04:00
parent a4aef02747
commit 6831a73fdf
No known key found for this signature in database
GPG Key ID: 8CB5CD10385138DB

@ -262,5 +262,6 @@ export function useDefaultsFromURLSearch() {
recipient: parsed.recipient
})
)
}, [dispatch, chainId, parsedQs])
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [dispatch, chainId])
}