This commit is contained in:
alma 2026-01-18 14:35:10 +01:00
parent ba59d266e3
commit d6ae2c975e

View File

@ -108,7 +108,11 @@ export default function SignIn() {
)} )}
</header> </header>
{/* Main content centered */} {/* Main content centered - only show panel if there's content to display */}
{(isLogoutRedirect ||
initializationStatus !== null ||
isLoggingIn ||
status === "loading") && (
<div className="flex-1 flex items-center justify-center"> <div className="flex-1 flex items-center justify-center">
<div className="w-full max-w-md space-y-8 bg-white/90 backdrop-blur-sm p-8 rounded-xl shadow-xl"> <div className="w-full max-w-md space-y-8 bg-white/90 backdrop-blur-sm p-8 rounded-xl shadow-xl">
<div> <div>
@ -136,6 +140,7 @@ export default function SignIn() {
</div> </div>
</div> </div>
</div> </div>
)}
</div> </div>
); );
} }