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 (