From fb1745b0ad631473f9fab4a6c42040006f6c94b0 Mon Sep 17 00:00:00 2001 From: Ebube Date: Thu, 27 Apr 2023 13:52:42 +0100 Subject: [PATCH] changed queryParams name --- src/components/AuthPages/VerifyLink/index.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/AuthPages/VerifyLink/index.jsx b/src/components/AuthPages/VerifyLink/index.jsx index 70b6f5a..3ae549f 100644 --- a/src/components/AuthPages/VerifyLink/index.jsx +++ b/src/components/AuthPages/VerifyLink/index.jsx @@ -12,7 +12,7 @@ export default function VerifyLink() { const navigate = useNavigate() const location = useLocation(); const queryParams = new URLSearchParams(location?.search) - const token = queryParams.get('vlink') + const token = queryParams.get('vlnk') const verifyEmail = useCallback( async (code) => {