aboutsummaryrefslogtreecommitdiffstats
path: root/packages/web/app/signin/components/CredentialsForm.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/web/app/signin/components/CredentialsForm.tsx')
-rw-r--r--packages/web/app/signin/components/CredentialsForm.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/web/app/signin/components/CredentialsForm.tsx b/packages/web/app/signin/components/CredentialsForm.tsx
index 60b61156..f47708f6 100644
--- a/packages/web/app/signin/components/CredentialsForm.tsx
+++ b/packages/web/app/signin/components/CredentialsForm.tsx
@@ -84,7 +84,7 @@ function SignIn() {
);
}}
/>
- <ActionButton type="submit" loading={false}>
+ <ActionButton type="submit" loading={form.formState.isSubmitting}>
Sign In
</ActionButton>
</div>
@@ -195,7 +195,7 @@ function SignUp() {
);
}}
/>
- <ActionButton type="submit" loading={false}>
+ <ActionButton type="submit" loading={form.formState.isSubmitting}>
Sign Up
</ActionButton>
</div>