@shipstatic/drop 0.2.12 → 0.2.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -12002,7 +12002,8 @@ function useDrop(options) {
12002
12002
  return f;
12003
12003
  });
12004
12004
  const validatableFiles = filesForValidation.map((f) => ({
12005
- name: f.file.name,
12005
+ name: f.path,
12006
+ // Use full path to match server-side validation
12006
12007
  type: f.type,
12007
12008
  // Use corrected MIME type from mime-db, not browser's File.type
12008
12009
  size: f.file.size,