Franke Telgenhof

Results 3 comments of Franke Telgenhof

This issue is causing problems for me when resetting a form containing an input element with formatOnBlur enabled: ```typescript {(fieldProps: FieldRenderProps) => ( {label} ); } ``` When I don't...

I'm expecting this to be a bug, as I'm able to work around this with the following: ```typescript await this.axios.get(url, { ...config, headers: { 'Cache-Control': 'max-age=0', ...config?.headers, }, params: {...

It can be fixed by changing this: ```typescript for (const [key, value] of signedUrl.searchParams.entries()) { config.params[key] = value; } ``` To this: ```typescript config.params = { ...config.params, ...Object.fromEntries(signedUrl.searchParams.entries()) } ```