0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-23 20:33:16 -05:00

fix: revert "refactor(console): handle user navigates to 'callback' after authenticated"

This reverts commit 540812d060.
This commit is contained in:
Charles Zhao 2022-05-30 12:03:07 +08:00
parent 362c3a6e6e
commit 858468037c
No known key found for this signature in database
GPG key ID: 4858774754C92DF2

View file

@ -1,24 +1,12 @@
import { LogtoError, OidcError, useHandleSignInCallback } from '@logto/react';
import React, { useEffect } from 'react';
import { useNavigate } from 'react-router-dom';
import React from 'react';
import AppError from '@/components/AppError';
import LogtoLoading from '@/components/LogtoLoading';
import { getBasename } from '@/utilities/app';
const Callback = () => {
const { error, isAuthenticated } = useHandleSignInCallback(getBasename());
const navigate = useNavigate();
/**
* Redirect back to the home page if the user is already authenticated.
* Corner case when user mistakenly navigate to `/callback` route after a successful authentication.
*/
useEffect(() => {
if (isAuthenticated) {
navigate('/');
}
}, [isAuthenticated, navigate]);
const { error } = useHandleSignInCallback(getBasename());
if (error) {
const errorCode =