mirror of
				https://github.com/Unleash/unleash.git
				synced 2025-10-27 11:02:16 +01: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:
		
							parent
							
								
									0d3dee0e96
								
							
						
					
					
						commit
						41203340fd
					
				@ -34,7 +34,7 @@ export const InitialRedirect = () => {
 | 
				
			|||||||
    }, [getRedirect]);
 | 
					    }, [getRedirect]);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if (loading) {
 | 
					    if (loading) {
 | 
				
			||||||
        return <Loader />;
 | 
					        return <Loader type='fullscreen' />;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    return null;
 | 
					    return null;
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user