diff --git a/src/hooks/useAccountRiskCheck.ts b/src/hooks/useAccountRiskCheck.ts index 4bad634c18..f000e4db27 100644 --- a/src/hooks/useAccountRiskCheck.ts +++ b/src/hooks/useAccountRiskCheck.ts @@ -7,7 +7,7 @@ export default function useAccountRiskCheck(account: string | null | undefined) const dispatch = useAppDispatch() useEffect(() => { - if (account && window.location.hostname === 'app.uniswap.org') { + if (account) { const headers = new Headers({ 'Content-Type': 'application/json' }) fetch('https://screening-worker.uniswap.workers.dev', { method: 'POST',