Fixed the issue for two loaders shown after reloading the page. (#6693)

This commit is contained in:
Aniket Katkar 2022-08-11 06:32:53 +05:30 committed by GitHub
parent 27483c6756
commit d77ab76cab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -163,7 +163,7 @@ const OidcAuthenticator = forwardRef<AuthenticatorRef, Props>(
<AppWithAuth />
)}
</Switch>
{loading && <Loader />}
{loading && isSigningIn && <Loader />}
</>
);
}