diff --git a/frontend/src/pages/AutoMatch.tsx b/frontend/src/pages/AutoMatch.tsx index aab1783..639b13e 100644 --- a/frontend/src/pages/AutoMatch.tsx +++ b/frontend/src/pages/AutoMatch.tsx @@ -26,6 +26,12 @@ export default function AutoMatch() { return currentPerson?.matches || [] }, [currentPerson]) + // Auto-start auto-match when component mounts or tolerance changes + useEffect(() => { + startAutoMatch() + // eslint-disable-next-line react-hooks/exhaustive-deps + }, [tolerance]) + // Apply search filter useEffect(() => { if (!searchQuery.trim()) { @@ -268,11 +274,20 @@ export default function AutoMatch() { {/* Person face image */}