diff --git a/packages/thirdweb/src/storage/upload/helpers.ts b/packages/thirdweb/src/storage/upload/helpers.ts index 6ef94b12f84..37211200337 100644 --- a/packages/thirdweb/src/storage/upload/helpers.ts +++ b/packages/thirdweb/src/storage/upload/helpers.ts @@ -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.`, );