From 4e2000087d932353ed2bd7c7d14de904eea465f7 Mon Sep 17 00:00:00 2001 From: Jack Kingsman Date: Thu, 12 Feb 2026 00:17:37 -0800 Subject: [PATCH] Handle nullable contact fields now that we don't send partial contacts --- frontend/src/App.tsx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index 3263bba..4a82382 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -254,10 +254,6 @@ export function App() { updated[idx] = { ...existing, ...contact, - name: contact.name ?? existing.name, - last_path: contact.last_path ?? existing.last_path, - lat: contact.lat ?? existing.lat, - lon: contact.lon ?? existing.lon, }; return updated; }