Files
HexaHost-GameCloud/apps/web/src/app/[locale]/auth/sso/page.tsx
smueller 333ad1cc7d
Some checks failed
CI / Node — lint, typecheck, test, build (push) Failing after 9s
CI / Go — node-agent tests (push) Failing after 8s
CI / Go — edge-gateway build (push) Successful in 17s
Phase D
2026-06-26 14:03:57 +02:00

21 lines
549 B
TypeScript

import { Suspense } from "react";
import { setRequestLocale } from "next-intl/server";
import { SsoContent } from "@/components/auth/sso-content";
interface SsoPageProps {
params: Promise<{ locale: string }>;
}
export default async function SsoPage({ params }: SsoPageProps) {
const { locale } = await params;
setRequestLocale(locale);
return (
<div className="mx-auto flex min-h-[calc(100vh-8rem)] max-w-6xl items-center justify-center px-4 py-12 sm:px-6">
<Suspense>
<SsoContent />
</Suspense>
</div>
);
}