Gildas Garcia

Results 188 comments of Gildas Garcia

Thanks for reporting this. Please provide a sample application showing the issue by forking the following CodeSandbox (https://codesandbox.io/s/github/marmelab/react-admin/tree/master/examples/simple).

Thanks for the error report and the PR! Would you mind trying to add a unit test for this case?

I'd love to but we need to keep at least one CRA to ensure their users don't have any issues

At build time, yes. Otherwise, it happens in your editor just like the packages

We already uses yarn workspaces and esbuild (through tsup). Lerna is only used for publishing. We don't want to use only `vite` as we need a way to validate everything...

@jtomaszewski Thanks for the suggestion! Would you mind creating a PR for it?

Thanks for reporting this. Please provide a sample application showing the issue by forking the following CodeSandbox (https://codesandbox.io/s/github/marmelab/react-admin/tree/master/examples/simple).

In the case you return a promise, you should handle the side effects when the promise resolves: ```jsx update( 'posts', { id: values.id, data: values, }, { returnPromise: true, mutationMode:...