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 = () => {
3030};
3131
3232const loading = computed (() => {
33- return submittingRequest .value || authStore .fetchingCsrfToken . value ;
33+ return submittingRequest .value || authStore .fetchingCsrfToken ;
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 . value ;
46+ return loggingIn .value || authStore .fetchingCsrfToken ;
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 . value ;
36+ return registering .value || authStore .fetchingCsrfToken ;
3737});
3838
3939onMounted (() => {
@@ -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 >
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 . value ;
48+ return resetting .value || authStore .fetchingCsrfToken ;
4949});
5050
5151onMounted (() => {
Original file line number Diff line number Diff 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 >
Original file line number Diff line number Diff 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 >
You can’t perform that action at this time.
0 commit comments