You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: rewrite dedup to use composite key (name+email+date+position)
Previous dedup was bypassed because each DB row has a unique id/token.
New approach uses candidateName + candidateEmail + date + position as
the composite key (case-insensitive, trimmed) to catch true duplicates.
Keeps first occurrence (newest by created_at DESC ordering from DB).
0 commit comments