fixes
Build And Push Image / docker (push) Successful in 3m7s Details

This commit is contained in:
Matt 2025-08-08 20:49:50 +02:00
parent 3894295569
commit cb73b239a8
1 changed files with 5 additions and 8 deletions

View File

@ -36,7 +36,7 @@
variant="outlined"
:disabled="loading"
required
@update:model-value="updateField('first_name', $event)"
/>
</v-col>
<v-col cols="12" sm="6">
@ -49,7 +49,7 @@
variant="outlined"
:disabled="loading"
required
@update:model-value="updateField('last_name', $event)"
/>
</v-col>
</v-row>
@ -65,7 +65,7 @@
variant="outlined"
:disabled="loading"
required
@update:model-value="updateField('email', $event)"
/>
<PhoneInputWrapper
@ -98,7 +98,7 @@
rows="3"
:disabled="loading"
required
@update:model-value="updateField('address', $event)"
/>
<MultipleNationalityInput
@ -321,10 +321,7 @@ function onRecaptchaExpired() {
// Template refs
const recaptcha = ref<any>(null);
// Helper function to handle form field updates (prevents autocomplete conflicts)
const updateField = (fieldName: keyof typeof form.value, value: string) => {
form.value[fieldName] = value;
};
// Form submission
async function submitRegistration() {