Clean up contact creation and add missing FE fields for last_contacted

This commit is contained in:
Jack Kingsman
2026-01-14 19:41:46 -08:00
parent 0749b5ea4a
commit c6d38ce400
7 changed files with 12 additions and 36 deletions
+1
View File
@@ -443,6 +443,7 @@ export function App() {
lon: null,
last_seen: null,
on_radio: false,
last_contacted: null,
last_read_at: null,
};
setContacts((prev) => [...prev, newContact]);
+1
View File
@@ -67,6 +67,7 @@ export interface Contact {
lon: number | null;
last_seen: number | null;
on_radio: boolean;
last_contacted: number | null;
last_read_at: number | null;
}