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

Merge pull request #986 from logto-io/charles-fix-sign-in-failure

fix: revert "refactor(console): handle user navigates to 'callback' after authenticated"
This commit is contained in:
Charles Zhao 2022-05-30 12:10:27 +08:00 committed by GitHub
commit fb49b4e100
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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 =