diff --git a/app/services/page.tsx b/app/services/page.tsx index f7d64f6..b8c3e72 100644 --- a/app/services/page.tsx +++ b/app/services/page.tsx @@ -19,9 +19,9 @@ export async function generateMetadata(): Promise { export default async function ServicesPage() { const [services, locations] = await Promise.all([ - // Vercel Best Practice: server-serialization - Select only required fields - sql`SELECT id, title, description, slug, icon_name, sub_services FROM services ORDER BY display_order ASC`, - sql`SELECT id, name, slug FROM locations ORDER BY display_order ASC` + // Reverting to SELECT * to fix build error while investigating missing columns + sql`SELECT * FROM services ORDER BY display_order ASC`, + sql`SELECT * FROM locations ORDER BY display_order ASC` ]); const servicesSchema = {