File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/thirdweb/src/storage Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ type UploadReturnType<TFiles extends UploadableFile[]> = TFiles extends {
67
67
export async function upload < const TFiles extends UploadableFile [ ] > (
68
68
options : UploadOptions < TFiles > ,
69
69
) : Promise < UploadReturnType < TFiles > > {
70
- // deal with the differnt file types
70
+ // deal with the different file types
71
71
72
72
// if there are no files, return an empty array immediately
73
73
if ( options . files . length === 0 ) {
@@ -112,7 +112,7 @@ export async function upload<const TFiles extends UploadableFile[]>(
112
112
} ) ;
113
113
}
114
114
115
- // end deal with the differnt file types
115
+ // end deal with the different file types
116
116
const form_ = new FormData ( ) ;
117
117
118
118
const { fileNames, form } = buildFormData ( form_ , uris , options ) ;
You can’t perform that action at this time.
0 commit comments