File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
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 ;
33
+ return submittingRequest .value || authStore .fetchingCsrfToken || authStore . fetchingUser ;
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 ;
46
+ return loggingIn .value || authStore .fetchingCsrfToken || authStore . fetchingUser ;
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 ;
36
+ return registering .value || authStore .fetchingCsrfToken || authStore . fetchingUser ;
37
37
});
38
38
39
39
onMounted (() => {
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 ;
48
+ return resetting .value || authStore .fetchingCsrfToken || authStore . fetchingUser ;
49
49
});
50
50
51
51
onMounted (() => {
You can’t perform that action at this time.
0 commit comments