diff --git a/src/lib/supabase.ts b/src/lib/supabase.ts index 3e5363b..69a41bd 100644 --- a/src/lib/supabase.ts +++ b/src/lib/supabase.ts @@ -13,6 +13,7 @@ export async function getAllSyncedRows(token?: string): Promise { const response = await fetch( `${SUPABASE_URL}/rest/v1/products_history?select=*&order=changed_at.desc&limit=100`, { + cache: 'no-store', headers: { 'apikey': SUPABASE_KEY, 'Authorization': `Bearer ${token || SUPABASE_KEY}`