Edmund Hung
Edmund Hung
Thanks for your suggestion, @echoulen! I have also received similar feedbacks from my peers. Let me work on it over the next couple days.
Hello! I am a wrangler user and realise the metadata support have to come from the rust library here. May I ask if there are any blockers/concerns on supporting it?...
Closing this for now as the template would stick with tailwindcss. If anyone managed to integrate with Chakra UI, feel free to share here. I can add a link on...
I have found this behaviour documented in the HTML spec before. Basically, the browser will look for the first submit button in the DOM whenever you press enter. But be...
@ditorodev Your example won't work unfortunately because that's exactly how this is designed and used to achieve progressive enhancement (So the button will work even before hydration / no JS)....
This is a tricky one 😅 As checkbox does not contribute to the FormData unless it is checked, there is no way Conform can construct the flags object. It is...
I wonder if this is something safe to do with automatic type coercion ```tsx const schema = z.object({ flags: z.preprocess(value => { if (typeof value !== 'undefined') { return value;...
I think the value should default to an empty object only if the object schema is required. If the object is optional, we should keep it as is.
Thanks for the offer @aaronadamsCA. I think it would be better to stay consistent with the current approach in which we will coerce the object automatically. (I have plan to...
Thanks for reporting the issue. This seems to be a problem only on chrome as I tested it on firefox and it works fine there. I will look into it...