Fix Global Flicker (#2604)
This commit is contained in:
parent
afe957674c
commit
071077f2dc
1 changed files with 1 additions and 1 deletions
|
@ -427,7 +427,7 @@ export default function Shell(props: LayoutProps) {
|
|||
const isLoading =
|
||||
i18n.status === "loading" || query.status === "loading" || isRedirectingToOnboarding || loading;
|
||||
|
||||
if (isLoading && !props.customLoader) {
|
||||
if (isLoading) {
|
||||
return (
|
||||
<div className="absolute z-50 flex h-screen w-full items-center bg-gray-50">
|
||||
<Loader />
|
||||
|
|
Loading…
Reference in a new issue