Skip to content

Commit 57400af

Browse files
author
leopardracer
authored
Update upload.ts
Signed-off-by: leopardracer <[email protected]>
1 parent 1bb1523 commit 57400af

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/thirdweb/src/storage/upload.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ type UploadReturnType<TFiles extends UploadableFile[]> = TFiles extends {
6767
export async function upload<const TFiles extends UploadableFile[]>(
6868
options: UploadOptions<TFiles>,
6969
): Promise<UploadReturnType<TFiles>> {
70-
// deal with the differnt file types
70+
// deal with the different file types
7171

7272
// if there are no files, return an empty array immediately
7373
if (options.files.length === 0) {
@@ -112,7 +112,7 @@ export async function upload<const TFiles extends UploadableFile[]>(
112112
});
113113
}
114114

115-
// end deal with the differnt file types
115+
// end deal with the different file types
116116
const form_ = new FormData();
117117

118118
const { fileNames, form } = buildFormData(form_, uris, options);

0 commit comments

Comments
 (0)