diff --git a/frontend/src/lib/components/AdventureModal.svelte b/frontend/src/lib/components/AdventureModal.svelte index 322e67f..1e9b1b4 100644 --- a/frontend/src/lib/components/AdventureModal.svelte +++ b/frontend/src/lib/components/AdventureModal.svelte @@ -48,7 +48,6 @@ let adventure: Adventure = { id: '', name: '', - type: 'visited', visits: [], link: null, description: null, @@ -75,7 +74,6 @@ adventure = { id: adventureToEdit?.id || '', name: adventureToEdit?.name || '', - type: adventureToEdit?.type || 'general', link: adventureToEdit?.link || null, description: adventureToEdit?.description || null, activity_types: adventureToEdit?.activity_types || [], @@ -1045,13 +1043,7 @@ it would also work to just use on:click on the MapLibre component itself. --> -