File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
services/tenant-ui/frontend/src/components/profile Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 40
40
:value =" tenant.contact_email"
41
41
/>
42
42
</div >
43
-
44
43
</div >
45
44
</template >
46
45
Original file line number Diff line number Diff line change 31
31
:class =" { 'p-invalid': v$.contact_email.$invalid && submitted }"
32
32
/>
33
33
<span v-if =" v$.contact_email.$error && submitted" >
34
- <span v-for =" (error, index) of v$.contact_email.$errors" :key =" index" >
34
+ <span
35
+ v-for =" (error, index) of v$.contact_email.$errors"
36
+ :key =" index"
37
+ >
35
38
<small class =" p-error" >{{ error.$message }}</small >
36
39
</span >
37
40
</span >
@@ -631,8 +634,8 @@ const handleSubmit = async (isFormValid: boolean) => {
631
634
extra_settings: extraSettings ,
632
635
};
633
636
const new_email = {
634
- contact_email: formFields .contact_email
635
- }
637
+ contact_email: formFields .contact_email ,
638
+ };
636
639
await tenantStore .updateTenantSubWallet (payload );
637
640
await tenantStore .updateTenantContact (new_email );
638
641
You can’t perform that action at this time.
0 commit comments