20 lines
614 B
TypeScript
20 lines
614 B
TypeScript
import { notFound } from 'next/navigation';
|
|
import { TeamDetailPageQuery } from '@/lib/page-queries/TeamDetailPageQuery';
|
|
import { TeamDetailPageClient } from './TeamDetailPageClient';
|
|
|
|
export default async function Page({ params }: { params: Promise<{ id: string }> }) {
|
|
const { id } = await params;
|
|
const result = await TeamDetailPageQuery.execute(id);
|
|
|
|
if (result.isErr()) {
|
|
const error = result.getError();
|
|
if (error === 'notFound') {
|
|
notFound();
|
|
}
|
|
// For other errors, treat as not found for now
|
|
notFound();
|
|
}
|
|
|
|
return <TeamDetailPageClient viewData={result.unwrap()} />;
|
|
}
|