fix: increase synced rows limit to 1000

This commit is contained in:
Christian Vidal Wolf
2026-04-23 16:02:59 +02:00
parent d98665fde0
commit ba5bea44c0
+1 -1
View File
@@ -43,7 +43,7 @@ export interface SyncedRow {
export async function getAllSyncedRows(): Promise<Record<string, SyncedRow>> {
try {
const response = await safeFetch(
`${SUPABASE_URL}/rest/v1/products?select=product_id,data,status&order=updated_at.desc`,
`${SUPABASE_URL}/rest/v1/products?select=product_id,data,status&order=updated_at.desc&limit=1000`,
{ cache: 'no-store' }
);