remix-validated-form 4.6.8 → 4.6.9

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "remix-validated-form",
3
- "version": "4.6.8",
3
+ "version": "4.6.9",
4
4
  "description": "Form component and utils for easy form validation in remix",
5
5
  "main": "./dist/index.cjs.js",
6
6
  "module": "./dist/index.esm.js",
@@ -320,6 +320,7 @@ export function ValidatedForm<DataType>({
320
320
  ) => {
321
321
  startSubmit();
322
322
  const submitter = nativeEvent.submitter as HTMLFormSubmitter | null;
323
+ const formMethod = (submitter?.formMethod as FormMethod) || method;
323
324
  const formDataToValidate = getDataFromForm(e.currentTarget);
324
325
  if (submitter?.name) {
325
326
  formDataToValidate.append(submitter.name, submitter.value);
@@ -350,11 +351,12 @@ export function ValidatedForm<DataType>({
350
351
  // but we already have the form in `formRef.current` so we can just use that.
351
352
  // If we use `event.currentTarget` here, it will break because `currentTarget`
352
353
  // will have changed since the start of the submission.
353
- if (fetcher) fetcher.submit(submitter || e.currentTarget);
354
+ if (fetcher)
355
+ fetcher.submit(submitter || e.currentTarget, { method: formMethod });
354
356
  else
355
357
  submit(submitter || target, {
356
358
  replace,
357
- method: (submitter?.formMethod as FormMethod) || method,
359
+ method: formMethod,
358
360
  });
359
361
  }
360
362
  };