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"
>
-
- timeline
-
+
) : null}
- {birdTimelineEventForm.eventType === 'location_updated' ? (
-
- ) : null}