diff --git a/src/pages/admin/AdminProducts.tsx b/src/pages/admin/AdminProducts.tsx index 004b3b4..42afeb6 100644 --- a/src/pages/admin/AdminProducts.tsx +++ b/src/pages/admin/AdminProducts.tsx @@ -90,7 +90,7 @@ export default function AdminProducts() { const fetchProducts = async () => { const { data, error } = await supabase .from('products') - .select('id, title, slug, type, description, meeting_link, recording_url, m3u8_url, mp4_url, video_host, event_start, duration_minutes, price, sale_price, is_active, chapters') + .select('id, title, slug, type, description, content, meeting_link, recording_url, m3u8_url, mp4_url, video_host, event_start, duration_minutes, price, sale_price, is_active, chapters') .order('created_at', { ascending: false }); if (!error && data) setProducts(data); setLoading(false);