-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enhance SignupForm with Debounced Validation #3235
Comments
Welcome! 👋 Thanks for opening your first issue here! And to ensure the community is able to respond to your issue, be sure to follow the issue template if you haven't already. |
i want to work on this issue ,kindly assign it to me @shubhsardana29 |
hi i'm not the maintainer/member here. Also there are already so many PRs on this, please don't spam the repo |
Increasing Access
Unsure
Feature enhancement details
Current Behavior
The SignupForm component currently validates the username and email fields on every keystroke, potentially causing excessive API calls and affecting performance.
Proposed Enhancement
Implement debouncing for the username and email field validations to reduce the number of API calls and improve overall form performance.
Expected Behavior After Enhancement
->Validation for username and email fields should only occur after the user has stopped typing for a short period (e.g., 300ms).
->This should significantly reduce the number of API calls made during form completion.
->The user experience should be smoother, with less apparent lag during typing.
The text was updated successfully, but these errors were encountered: