4699 update the onboarding app placeholder (#5616)
## Before  ## After 
This commit is contained in:
@ -20,9 +20,9 @@ export const NavigationDrawerSectionTitle = ({
|
||||
label,
|
||||
}: NavigationDrawerSectionTitleProps) => {
|
||||
const loading = useIsPrefetchLoading();
|
||||
return loading ? (
|
||||
<NavigationDrawerSectionTitleSkeletonLoader />
|
||||
) : (
|
||||
<StyledTitle>{label}</StyledTitle>
|
||||
);
|
||||
|
||||
if (loading) {
|
||||
return <NavigationDrawerSectionTitleSkeletonLoader />;
|
||||
}
|
||||
return <StyledTitle>{label}</StyledTitle>;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user