Error al cargar la encuesta
No fue posible conectarse a la base de datos. Revisá las variables de entorno.
{surveyError.message}
import { createClient } from '@/lib/supabase' import type { BrandConfig, Question, Survey } from '@/lib/types' import { SurveyForm } from '@/components/survey-form' // Force dynamic rendering — page fetches from Supabase at request time. export const dynamic = 'force-dynamic' // In Next.js 15, searchParams is a Promise and must be awaited. interface PageProps { searchParams: Promise<{ s?: string }> } export default async function Page({ searchParams }: PageProps) { const { s: surveyId } = await searchParams const supabase = createClient() // 1. Fetch survey — by ?s=UUID if provided, otherwise first live survey const surveyQuery = supabase .from('surveys') .select('id, org_id, title, status, is_anonymous, k_threshold, consent_version_id, brand_config') const { data: surveyRow, error: surveyError } = surveyId ? await surveyQuery.eq('id', surveyId).maybeSingle() : await surveyQuery.eq('status', 'live').maybeSingle() if (surveyError) { return (
No fue posible conectarse a la base de datos. Revisá las variables de entorno.
{surveyError.message}
Para ver el formulario, la encuesta debe estar en estado live,
o pasá el UUID por parámetro: ?s=UUID.
{`-- Activar en Supabase Cloud:\nUPDATE surveys SET status = 'live'\nWHERE id = '30000000-0000-0000-0000-000000000001';`}
{questionsError?.message ?? 'Respuesta vacía del servidor.'}