1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-06-04 01:18:20 +02:00

fix: use a fullscreen loader for the initial redirect load (#7619)

This PR fixes a minor visual glitch where the initial Unleash load might
display a jumping loading icon. The reason was that the initial
redirect's loader wasn't marked as a fullscreen loader.
This commit is contained in:
Thomas Heartman 2024-07-18 14:50:59 +02:00 committed by GitHub
parent 0d3dee0e96
commit 41203340fd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -34,7 +34,7 @@ export const InitialRedirect = () => {
}, [getRedirect]);
if (loading) {
return <Loader />;
return <Loader type='fullscreen' />;
}
return null;