diff --git a/apps/web/components/Shell.tsx b/apps/web/components/Shell.tsx index b68f1220f0..238cd1e6b0 100644 --- a/apps/web/components/Shell.tsx +++ b/apps/web/components/Shell.tsx @@ -329,10 +329,21 @@ const Layout = ({ )}> {props.HeadingLeftIcon &&
{props.HeadingLeftIcon}
}
-

- {props.heading} -

-

{props.subtitle}

+ {props.isLoading ? ( + <> +
+
+ + ) : ( + <> +

+ {props.heading} +

+

+ {props.subtitle} +

+ + )}
{props.CTA &&
{props.CTA}
}