diff --git a/pages/signup.vue b/pages/signup.vue
index a5f8a3c..6105861 100644
--- a/pages/signup.vue
+++ b/pages/signup.vue
@@ -28,28 +28,36 @@
(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() {
if (!valid.value || !recaptchaToken.value) {