refactor(loading): streamline LoadingOverlay usage in HomePage and AuthCallback to return null during loading states

This commit is contained in:
Usman Baig
2026-01-22 18:36:03 +01:00
parent db6ae6a447
commit 12292b62a8
3 changed files with 5 additions and 5 deletions

View File

@@ -110,12 +110,12 @@ function AuthCallbackContent() {
}
// * Use standard Pulse loading screen to make transition to Home seamless
return <LoadingOverlay portal={false} />
return null
}
export default function AuthCallback() {
return (
<Suspense fallback={<LoadingOverlay portal={false} />}>
<Suspense fallback={null}>
<AuthCallbackContent />
</Suspense>
)