Skip to content

Commit

Permalink
Applied eslint changes
Browse files Browse the repository at this point in the history
Signed-off-by: Gavin Jaeger-Freeborn <[email protected]>
  • Loading branch information
Gavinok committed Dec 19, 2023
1 parent cb62474 commit 0f0ff09
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@
:value="tenant.contact_email"
/>
</div>

</div>
</template>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,10 @@
:class="{ 'p-invalid': v$.contact_email.$invalid && submitted }"
/>
<span v-if="v$.contact_email.$error && submitted">
<span v-for="(error, index) of v$.contact_email.$errors" :key="index">
<span
v-for="(error, index) of v$.contact_email.$errors"
:key="index"
>
<small class="p-error">{{ error.$message }}</small>
</span>
</span>
Expand Down Expand Up @@ -631,8 +634,8 @@ const handleSubmit = async (isFormValid: boolean) => {
extra_settings: extraSettings,
};
const new_email = {
contact_email: formFields.contact_email
}
contact_email: formFields.contact_email,
};
await tenantStore.updateTenantSubWallet(payload);
await tenantStore.updateTenantContact(new_email);
Expand Down

0 comments on commit 0f0ff09

Please sign in to comment.