Fix UI Flicker in Dashboard (#10261)
All checks were successful
Read Version from pyproject.toml / read-version (push) Successful in 17s
Helm unit test / unit-test (push) Successful in 24s

This commit is contained in:
Christian Owusu 2025-04-24 06:27:44 +00:00 committed by GitHub
parent 2adb2fc6a5
commit b82af5b826
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -151,7 +151,7 @@ export default function CreateKeyPage() {
if (redirectToLogin) {
window.location.href = (proxyBaseUrl || "") + "/sso/key/generate"
}
}, [token, authLoading])
}, [redirectToLogin])
useEffect(() => {
if (!token) {
@ -223,7 +223,7 @@ export default function CreateKeyPage() {
}
}, [accessToken, userID, userRole]);
if (authLoading) {
if (authLoading || redirectToLogin) {
return <LoadingScreen />
}