Fix TypeError: Cannot read properties of null (reading 'toJSON').
When selecting an empty value from a react-admin field that allow null value like ReferenceInput, the error occurs when submitting the form that contain a file field where a FormData is used when convert react-admin data to hydra data because the toJSON function cannot be applied on a null value.
Fix
TypeError: Cannot read properties of null (reading 'toJSON')
.When selecting an empty value from a react-admin field that allow null value like ReferenceInput, the error occurs when submitting the form that contain a file field where a FormData is used when convert react-admin data to hydra data because the
toJSON
function cannot be applied on a null value.