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 = () => {
3030};
3131
3232const loading = computed (() => {
33- return submittingRequest .value || authStore .fetchingCsrfToken ;
33+ return submittingRequest .value || authStore .fetchingCsrfToken || authStore . fetchingUser ;
3434});
3535
3636onMounted (() => {
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ const submit = () => {
4343};
4444
4545const loading = computed (() => {
46- return loggingIn .value || authStore .fetchingCsrfToken ;
46+ return loggingIn .value || authStore .fetchingCsrfToken || authStore . fetchingUser ;
4747});
4848
4949onMounted (() => {
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ const submit = () => {
3333};
3434
3535const loading = computed (() => {
36- return registering .value || authStore .fetchingCsrfToken ;
36+ return registering .value || authStore .fetchingCsrfToken || authStore . fetchingUser ;
3737});
3838
3939onMounted (() => {
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ const submit = () => {
4545};
4646
4747const loading = computed (() => {
48- return resetting .value || authStore .fetchingCsrfToken ;
48+ return resetting .value || authStore .fetchingCsrfToken || authStore . fetchingUser ;
4949});
5050
5151onMounted (() => {
You can’t perform that action at this time.
0 commit comments