diff --git a/src/lib/components/AddOtherTransportationForm.svelte b/src/lib/components/AddOtherTransportationForm.svelte index 698b1f4..8adc446 100644 --- a/src/lib/components/AddOtherTransportationForm.svelte +++ b/src/lib/components/AddOtherTransportationForm.svelte @@ -26,6 +26,8 @@ let status = $state<'idea' | 'tentative' | 'confirmed'>('idea'); let title = $state(''); let notes = $state(''); + let startLocation = $state(''); + let endLocation = $state(''); let startDate = $state(''); let startTime = $state(''); let startTimezone = $state(''); @@ -37,6 +39,8 @@ status = 'idea'; title = ''; notes = ''; + startLocation = ''; + endLocation = ''; startDate = ''; startTime = ''; startTimezone = ''; @@ -108,6 +112,35 @@ > +