remix-validated-form 4.6.8 → 4.6.10

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.10",
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,7 +320,8 @@ export function ValidatedForm<DataType>({
320
320
  ) => {
321
321
  startSubmit();
322
322
  const submitter = nativeEvent.submitter as HTMLFormSubmitter | null;
323
- const formDataToValidate = getDataFromForm(e.currentTarget);
323
+ const formMethod = (submitter?.formMethod as FormMethod) || method;
324
+ const formDataToValidate = getDataFromForm(target);
324
325
  if (submitter?.name) {
325
326
  formDataToValidate.append(submitter.name, submitter.value);
326
327
  }
@@ -350,11 +351,11 @@ 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) fetcher.submit(submitter || target, { method: formMethod });
354
355
  else
355
356
  submit(submitter || target, {
356
357
  replace,
357
- method: (submitter?.formMethod as FormMethod) || method,
358
+ method: formMethod,
358
359
  });
359
360
  }
360
361
  };