Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/thirdweb/src/storage/upload/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ export function buildFormData(
// but then we skip because we don't need to upload it multiple times
continue;
}
// otherwise if file names are the same but they are not the same file then we should throw an error (trying to upload to differnt files but with the same names)
// otherwise if file names are the same but they are not the same file then we should throw an error (trying to upload to different files but with the same names)
throw new Error(
`[DUPLICATE_FILE_NAME_ERROR] File name ${fileName} was passed for more than one different file.`,
);
Expand Down