ENG-32 Fixed error while verifying support address (#19648)

This commit is contained in:
Princi Vershwal 2024-02-05 10:41:18 +05:30 committed by GitHub
parent c6c66d2a20
commit aba6c4b5e8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -42,7 +42,7 @@ const Newsletters: React.FC<{ keywords: string[] }> = ({keywords}) => {
}, [apiNewsletters]);
useEffect(() => {
if (!verifyEmailToken) {
if (!verifyEmailToken || !window.location.href.includes('newsletters')) {
return;
}