refactor(loading): enhance LoadingOverlay integration in HomePage and AuthCallback for consistent loading experience

This commit is contained in:
Usman Baig
2026-01-22 18:40:56 +01:00
parent 12292b62a8
commit c5d116b334
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 null
return <LoadingOverlay portal={false} />
}
export default function AuthCallback() {
return (
<Suspense fallback={null}>
<Suspense fallback={<LoadingOverlay portal={false} />}>
<AuthCallbackContent />
</Suspense>
)