From 0dfacc0d17f5720d2fd2826cdc8b7f1e38e5ac8c Mon Sep 17 00:00:00 2001 From: Corey Blais Date: Tue, 30 Jun 2026 12:16:31 -0400 Subject: [PATCH] Fixed timeline icon --- frontend/src/App.tsx | 28 +++++----------------------- frontend/src/index.css | 19 ------------------- 2 files changed, 5 insertions(+), 42 deletions(-) diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index 98c8045..4af3295 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -267,7 +267,6 @@ type BirdTimelineEvent = { type BirdTimelineEventFormState = { eventType: 'location_updated' | 'owner_changed' | 'manual_note'; - ownerChanged: boolean; eventDate: string; locationLabel: string; locationDetails: VerifiedLocationDetails; @@ -868,7 +867,6 @@ const emptyBirdForm: BirdFormState = { const emptyBirdTimelineEventForm: BirdTimelineEventFormState = { eventType: 'location_updated', - ownerChanged: false, eventDate: new Date().toISOString().slice(0, 10), locationLabel: '', locationDetails: emptyVerifiedLocationDetails, @@ -4002,7 +4000,7 @@ function App() { setSavingBirdTimelineEvent(true); try { - const eventType = birdTimelineEventForm.ownerChanged ? 'owner_changed' : birdTimelineEventForm.eventType; + const eventType = birdTimelineEventForm.eventType; const verifiedLocationLabel = formatVerifiedLocationLabel(birdTimelineEventForm.locationDetails); const locationLabel = birdTimelineEventForm.eventType === 'location_updated' @@ -7233,9 +7231,9 @@ function App() { aria-label="Timeline" title="Timeline" > - +