This commit is contained in:
2026-04-26 01:56:28 +02:00
parent 5bcdc2fb5d
commit 096ba07b4c
19 changed files with 14 additions and 37 deletions

View File

@@ -3,9 +3,6 @@ const props = defineProps({
participant: Object,
event: Object,
})
console.log(props.event)
console.log(props.participant)
</script>
<template>

View File

@@ -8,7 +8,6 @@ export function useSignupForm(event, participantData) {
const submitResult = ref(null) // null | { type: 'success'|'exists', data: {} }
const selectedAddons = reactive({})
console.log(participantData)
const formData = reactive({
eatingHabit: 'EATING_HABIT_VEGAN',

View File

@@ -20,7 +20,6 @@ const nextStep = () => {
const hasAddons = (props.event.addons?.length ?? 0) > 0
emit('next', hasAddons ? 6 : 7)
}
console.log(props.formData, props.event)
</script>
<template>