Skip to content

Commit abccf8e

Browse files
committed
fixes
1 parent 54c1d9b commit abccf8e

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

src/views/auth/ForgotPassword.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const submit = () => {
3030
};
3131
3232
const loading = computed(() => {
33-
return submittingRequest.value || authStore.fetchingCsrfToken.value;
33+
return submittingRequest.value || authStore.fetchingCsrfToken;
3434
});
3535
3636
onMounted(() => {

src/views/auth/Login.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ const submit = () => {
4343
};
4444
4545
const loading = computed(() => {
46-
return loggingIn.value || authStore.fetchingCsrfToken.value;
46+
return loggingIn.value || authStore.fetchingCsrfToken;
4747
});
4848
4949
onMounted(() => {

src/views/auth/Register.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ const submit = () => {
3333
};
3434
3535
const loading = computed(() => {
36-
return registering.value || authStore.fetchingCsrfToken.value;
36+
return registering.value || authStore.fetchingCsrfToken;
3737
});
3838
3939
onMounted(() => {
@@ -123,7 +123,7 @@ onMounted(() => {
123123
<div class="flex justify-end items-center pt-2">
124124
<RouterLink
125125
:to="{ name: 'login' }"
126-
class="mr-4 text-muted-color underline text-muted-color hover:text-color"
126+
class="mr-4 underline text-muted-color hover:text-color"
127127
>
128128
Already registered?
129129
</RouterLink>

src/views/auth/ResetPassword.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ const submit = () => {
4545
};
4646
4747
const loading = computed(() => {
48-
return resetting.value || authStore.fetchingCsrfToken.value;
48+
return resetting.value || authStore.fetchingCsrfToken;
4949
});
5050
5151
onMounted(() => {

src/views/auth/VerifyEmail.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ const submit = () => {
4646
<a
4747
@click="authStore.logout()"
4848
href="#"
49-
class="text-muted-color underline text-muted-color hover:text-color"
49+
class="underline text-muted-color hover:text-color"
5050
>
5151
Log Out
5252
</a>

src/views/profile/partials/UpdateProfileInformationForm.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ onMounted(() => {
8585
<a
8686
href="#"
8787
@click="resendVerifyEmail"
88-
class="underline text-sm text-muted-color underline text-muted-color hover:text-color"
88+
class="text-sm underline text-muted-color hover:text-color"
8989
>
9090
Click here to re-send the verification email.
9191
</a>

0 commit comments

Comments
 (0)