Skip to content

Commit

Permalink
Build
Browse files Browse the repository at this point in the history
  • Loading branch information
promiseonuoha committed Sep 7, 2024
1 parent 68686ef commit 725ab22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/layouts/authenticated.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export default function AuthenticatedLayout({
// Redirect To Login if User is not Authenticated
if (user === null && !token) {
Cookies.set("RedirectionLink", pathname);
window.location.href = "https://auth.analogueshifts.app?app=main";
window.location.href = "https://auth.analogueshifts.app?app=forms";
return null;
} else if (user === null && token) {
// Fetch User
Expand Down

0 comments on commit 725ab22

Please sign in to comment.