File tree Expand file tree Collapse file tree 6 files changed +7
-7
lines changed Expand file tree Collapse file tree 6 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ const submit = () => {
30
30
};
31
31
32
32
const loading = computed (() => {
33
- return submittingRequest .value || authStore .fetchingCsrfToken . value ;
33
+ return submittingRequest .value || authStore .fetchingCsrfToken ;
34
34
});
35
35
36
36
onMounted (() => {
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ const submit = () => {
43
43
};
44
44
45
45
const loading = computed (() => {
46
- return loggingIn .value || authStore .fetchingCsrfToken . value ;
46
+ return loggingIn .value || authStore .fetchingCsrfToken ;
47
47
});
48
48
49
49
onMounted (() => {
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ const submit = () => {
33
33
};
34
34
35
35
const loading = computed (() => {
36
- return registering .value || authStore .fetchingCsrfToken . value ;
36
+ return registering .value || authStore .fetchingCsrfToken ;
37
37
});
38
38
39
39
onMounted (() => {
@@ -123,7 +123,7 @@ onMounted(() => {
123
123
<div class =" flex justify-end items-center pt-2" >
124
124
<RouterLink
125
125
: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"
127
127
>
128
128
Already registered?
129
129
</RouterLink >
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ const submit = () => {
45
45
};
46
46
47
47
const loading = computed (() => {
48
- return resetting .value || authStore .fetchingCsrfToken . value ;
48
+ return resetting .value || authStore .fetchingCsrfToken ;
49
49
});
50
50
51
51
onMounted (() => {
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ const submit = () => {
46
46
<a
47
47
@click =" authStore.logout()"
48
48
href =" #"
49
- class =" text-muted-color underline text-muted-color hover:text-color"
49
+ class =" underline text-muted-color hover:text-color"
50
50
>
51
51
Log Out
52
52
</a >
Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ onMounted(() => {
85
85
<a
86
86
href =" #"
87
87
@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"
89
89
>
90
90
Click here to re-send the verification email.
91
91
</a >
You can’t perform that action at this time.
0 commit comments