Skip to content

Commit

Permalink
refactor(experience): fix sso callback page style (#5624)
Browse files Browse the repository at this point in the history
  • Loading branch information
gao-sun authored Apr 3, 2024
1 parent 8e1713f commit d8c39aa
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import LoadingLayer from '@/components/LoadingLayer';
import useNativeMessageListener from '@/hooks/use-native-message-listener';
import { useSieMethods } from '@/hooks/use-sie';

import SignIn from '../SignIn';

import useSingleSignOnListener from './use-single-sign-on-listener';

type Props = {
Expand All @@ -20,7 +19,7 @@ const SingleSignOn = ({ connectorId }: Props) => {

useSingleSignOnListener(connectorId);

return <SignIn />;
return <LoadingLayer />;
};

export default SingleSignOn;

0 comments on commit d8c39aa

Please sign in to comment.