Bugfixes
This commit is contained in:
@@ -5,8 +5,6 @@ import ShadowedBox from "../../../../Views/Components/ShadowedBox.vue";
|
||||
const props = defineProps({
|
||||
events: Array,
|
||||
})
|
||||
|
||||
console.log(props.events)
|
||||
</script>
|
||||
|
||||
<template>
|
||||
|
||||
@@ -16,7 +16,6 @@ onMounted(async () => {
|
||||
const response = await fetch('/api/v1/event/participant/' + staticProps.participant.identifier + '/');
|
||||
const data = await response.json();
|
||||
Object.assign(props, data);
|
||||
console.log(props);
|
||||
});
|
||||
|
||||
|
||||
|
||||
@@ -42,8 +42,6 @@
|
||||
|
||||
})
|
||||
|
||||
console.log(formData)
|
||||
|
||||
function validateInput() {
|
||||
var noErrors = true;
|
||||
|
||||
|
||||
@@ -3,9 +3,6 @@ const props = defineProps({
|
||||
participant: Object,
|
||||
event: Object,
|
||||
})
|
||||
|
||||
console.log(props.event)
|
||||
console.log(props.participant)
|
||||
</script>
|
||||
|
||||
<template>
|
||||
|
||||
@@ -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',
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user