fix: ensure saved changes persist across app refreshes by updating status logic and merge check

This commit is contained in:
Christian Vidal Wolf
2026-05-11 11:48:11 +02:00
parent b182ef6037
commit 311d74b783
2 changed files with 6 additions and 3 deletions
+1 -1
View File
@@ -85,7 +85,7 @@ export async function saveRowToSupabase(articleNo: string, rowData: ExcelRow): P
body: JSON.stringify({
product_id: articleNo,
data: rowData,
status: 'edited',
status: 'pending',
updated_at: new Date().toISOString()
})
}