This commit is contained in:
Krrish Dholakia 2023-08-24 13:19:24 -07:00
parent 480281e2f9
commit cc7d61fd48
3 changed files with 14 additions and 1 deletions

View file

@ -45,6 +45,7 @@ const QueryParamReader = () => {
useEffect(() => {
const urlParams = new URLSearchParams(window.location.search);
console.log("urlParams: ", urlParams)
const token = urlParams.get('token');
setToken(token);
}, []);