Skip to content

Commit

Permalink
Update App.jsx
Browse files Browse the repository at this point in the history
  • Loading branch information
ChandelAnish authored Aug 24, 2024
1 parent 1a166c6 commit ad77dfe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export const getLoggedUserDetails = async () => {
});
const userDetails = await response.json();
if (userDetails.signin === false) {
window.open('/signin', '_parent')
window.open('https://fusionflow-signin.onrender.com', '_parent')
return {};
}
delete userDetails.iat;
Expand All @@ -45,4 +45,4 @@ export const getLoggedUserDetails = async () => {
console.log("error occurred : ", error)
return {};
}
}
}

0 comments on commit ad77dfe

Please sign in to comment.