-
Notifications
You must be signed in to change notification settings - Fork 64
fix: Forward required correctly for <Input /> and <Checkbox />
#83
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
Conversation
Currently, `<Input required />` will not make the `<input />` itself required.
|
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
fix: Handle `Checkbox` too
|
@amannn is attempting to deploy a commit to the Lemon Squeezy Team on Vercel. A member of the Team first needs to authorize it. |
required to wrapped inputrequired correctly for <Input /> and <Checkbox />
|
@branko-stripe Do you know if this repo is still maintained? I'd really appreciate a review from someone at Lemon Squeezy. I've also got another PR open here: #84 |
brankoconjic
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice catch!
|
Thanks for merging @brankoconjic! Any chance this PR wasn't released? I've also created another PR for React 19 support here: #84 |
Currently,
<Input required />will not make the<input />itself required (same forCheckbox). This should fix it.