Skip to content

Commit 6b6ea03

Browse files
committed
fix: group-charter-redirect
1 parent 9269424 commit 6b6ea03

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

platforms/group-charter-manager/src/components/auth/login-screen.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,10 @@ export default function LoginScreen() {
6262
setIsAuthenticating(true);
6363

6464
// Force a page refresh to trigger AuthProvider re-initialization
65-
window.location.reload();
65+
// window.location.reload();
66+
67+
// Redirect the user after successful login
68+
router.push("/charter");
6669
};
6770

6871
eventSource.onerror = (error) => {

0 commit comments

Comments
 (0)