diff --git a/app/(app)/ideas/[id]/page.tsx b/app/(app)/ideas/[id]/page.tsx index 80d946c..dcf7543 100644 --- a/app/(app)/ideas/[id]/page.tsx +++ b/app/(app)/ideas/[id]/page.tsx @@ -89,7 +89,7 @@ export default async function IdeaDetailPage({ params, searchParams }: PageProps const userQuestionsRaw = await prisma.userQuestion.findMany({ where: { idea_id: id }, - orderBy: { created_at: 'asc' }, + orderBy: { created_at: 'desc' }, take: 100, select: { id: true, question: true, answer: true, status: true, created_at: true }, })