diff --git a/packages/thirdweb/src/bridge/Status.test.ts b/packages/thirdweb/src/bridge/Status.test.ts index 4f4ab78e14e..33fbe487ca6 100644 --- a/packages/thirdweb/src/bridge/Status.test.ts +++ b/packages/thirdweb/src/bridge/Status.test.ts @@ -41,7 +41,7 @@ describe.runIf(process.env.TW_SECRET_KEY)("Bridge.status", () => { `); }); - it("should handle successfull status with chain", async () => { + it("should handle successful status with chain", async () => { const result = await status({ transactionHash: "0x7bedc4693e899fe81a22dac11301e77a12a6e772834bba5b698baf3ebcf86f7a", diff --git a/packages/thirdweb/src/storage/upload.ts b/packages/thirdweb/src/storage/upload.ts index 9561fd39424..fc3a1d0c3d4 100644 --- a/packages/thirdweb/src/storage/upload.ts +++ b/packages/thirdweb/src/storage/upload.ts @@ -67,7 +67,7 @@ type UploadReturnType = TFiles extends { export async function upload( options: UploadOptions, ): Promise> { - // deal with the differnt file types + // deal with the different file types // if there are no files, return an empty array immediately if (options.files.length === 0) { @@ -112,7 +112,7 @@ export async function upload( }); } - // end deal with the differnt file types + // end deal with the different file types const form_ = new FormData(); const { fileNames, form } = buildFormData(form_, uris, options);