How can prevent url redirect back to create page after create successfully when resource different?
How can prevent url redirect back to create page after create successfully when resource different default?
redirect property to false in your form configuration. This will stop the automatic redirection behavior after a successful form mutation.useForm hook:useGo hook in the onMutationSuccess callback to navigate to a specific path programmatically.redirectuseGoonMutationSuccessuseForm({
redirect: false,
});