Skip to content

Commit 0f0ff09

Browse files
committed
Applied eslint changes
Signed-off-by: Gavin Jaeger-Freeborn <[email protected]>
1 parent cb62474 commit 0f0ff09

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

services/tenant-ui/frontend/src/components/profile/ProfileForm.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@
4040
:value="tenant.contact_email"
4141
/>
4242
</div>
43-
4443
</div>
4544
</template>
4645

services/tenant-ui/frontend/src/components/profile/SettingsForm.vue

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,10 @@
3131
:class="{ 'p-invalid': v$.contact_email.$invalid && submitted }"
3232
/>
3333
<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+
>
3538
<small class="p-error">{{ error.$message }}</small>
3639
</span>
3740
</span>
@@ -631,8 +634,8 @@ const handleSubmit = async (isFormValid: boolean) => {
631634
extra_settings: extraSettings,
632635
};
633636
const new_email = {
634-
contact_email: formFields.contact_email
635-
}
637+
contact_email: formFields.contact_email,
638+
};
636639
await tenantStore.updateTenantSubWallet(payload);
637640
await tenantStore.updateTenantContact(new_email);
638641

0 commit comments

Comments
 (0)