remix-hook-form
Advanced tools
Comparing version 3.0.3 to 3.0.4
@@ -81,3 +81,3 @@ // src/utilities/index.ts | ||
formData.append(key, JSON.stringify(value)); | ||
} else if (value instanceof File) { | ||
} else if (value instanceof File || value instanceof Blob) { | ||
formData.append(key, value); | ||
@@ -84,0 +84,0 @@ } else if (typeof value === "object" && value !== null) { |
{ | ||
"name": "remix-hook-form", | ||
"version": "3.0.3", | ||
"version": "3.0.4", | ||
"description": "Utility wrapper around react-hook-form for use with Remix.run", | ||
@@ -5,0 +5,0 @@ "type": "module", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
48746