Skip to content

Commit

Permalink
feat(mellow-vue): remove optional access
Browse files Browse the repository at this point in the history
  • Loading branch information
DominusKelvin committed Sep 23, 2024
1 parent 0d53c73 commit 57c9c88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/mellow-vue/assets/js/pages/auth/login.vue
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ const disableLoginButton = computed(() => {
class="my-4 w-full rounded-sm border-red-400 bg-red-100 p-4 text-red-500"
v-if="form.errors.email || form.errors.login"
>
{{ form.errors?.login || form.errors?.email }}
{{ form.errors.login || form.errors.email }}
</p>
</section>
<form
Expand Down

0 comments on commit 57c9c88

Please sign in to comment.