diff --git a/apps/frontend/src/hooks/useFormChangeDetection.ts b/apps/frontend/src/hooks/useFormChangeDetection.ts index 9e12ea617..ac211a664 100644 --- a/apps/frontend/src/hooks/useFormChangeDetection.ts +++ b/apps/frontend/src/hooks/useFormChangeDetection.ts @@ -51,7 +51,7 @@ export function useFormChangeDetection< useEffect(() => { setTrackedInitialData(initialData); - }, [initialDataString, initialData]); + }, [initialDataString]); const hasChanges = compareFormData(currentData, trackedInitialData);