1.1.1 - OCR garbage removal detection frontend changes

This commit is contained in:
2026-01-27 10:39:04 +13:00
parent c9d55fbee8
commit 67ea357495
4 changed files with 210 additions and 1 deletions
+12
View File
@@ -485,6 +485,18 @@ export async function clearAllSuggestedMatches() {
})
}
/**
* POST /api/clean/preview - Preview cleaning changes
* Body: { file: string }
* Returns: { success, preview }
*/
export async function previewClean(file) {
return apiFetch('/clean/preview', {
method: 'POST',
body: JSON.stringify({ file })
})
}
// ============ MAINTENANCE API ============
/**