João Pedro Magalhães

Results 53 comments of João Pedro Magalhães

If you are rendering the form outside the `Dialog.Content`, what is happening is that the button is being portaled to the body and as it is not inside the form...

Instead of having a single instance you can reuse the component ```jsx const MyAlertDialogContent = () => { return ( ... ) } {invoices.map((invoice) => ( {invoice.invoice} {invoice.paymentStatus} {invoice.paymentMethod} {invoice.totalAmount}...

Are you using `FormProvider`? https://react-hook-form.com/docs/useformcontext

And passing all the values returned from `useForm`? ```jsx const form = useForm() ... ```

Seems to be working here https://codesandbox.io/p/sandbox/fervent-browser-49s77n

Hey guys, there is a bug in Radix if you want to reset the value and show the placeholder again. It was fixed in https://github.com/radix-ui/primitives/pull/2174 and you can reset to...

@evanlong0926 Did you install the RC? [`v2.0.0-rc.7`](https://www.npmjs.com/package/@radix-ui/react-select/v/2.0.0-rc.7)

> I have installed the npm i @radix-ui/[email protected] > > but it still cannot reset the Select in Form Component, > > Can anyone suggest a solution for me? >...

I made an example of a date picker with shadcn + react-aria where it is possible to let the user fill the date manually ### Installation ```sh npm i react-aria...