Skip to content

Commit 31c4ab8

Browse files
authored
Merge branch 'main' into gi/product-feedback-top-menu
2 parents 98e7cc8 + 210f631 commit 31c4ab8

File tree

7 files changed

+23
-3
lines changed

7 files changed

+23
-3
lines changed

packages/nebula/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @thirdweb-dev/nebula
22

3+
## 0.2.48
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`557f0e2`](https://github.com/thirdweb-dev/js/commit/557f0e29e86d2ef3e3b72988f714203b4ede1009)]:
8+
9+
310
## 0.2.47
411

512
### Patch Changes

packages/nebula/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,5 +57,5 @@
5757
"type": "module",
5858
"types": "./dist/types/exports/thirdweb.d.ts",
5959
"typings": "./dist/types/exports/thirdweb.d.ts",
60-
"version": "0.2.47"
60+
"version": "0.2.48"
6161
}

packages/thirdweb/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# thirdweb
22

3+
## 5.105.48
4+
5+
### Patch Changes
6+
7+
- [#8052](https://github.com/thirdweb-dev/js/pull/8052) [`557f0e2`](https://github.com/thirdweb-dev/js/commit/557f0e29e86d2ef3e3b72988f714203b4ede1009) Thanks [@gregfromstl](https://github.com/gregfromstl)! - Prevents incorrect failures in widget onramps.
8+
39
## 5.105.47
410

511
### Patch Changes

packages/thirdweb/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -417,5 +417,5 @@
417417
}
418418
},
419419
"typings": "./dist/types/exports/thirdweb.d.ts",
420-
"version": "5.105.47"
420+
"version": "5.105.48"
421421
}

packages/thirdweb/src/react/core/hooks/useStepExecutor.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -372,6 +372,11 @@ export function useStepExecutor(
372372

373373
const status = statusResult.status;
374374
if (status === "COMPLETED") {
375+
/*
376+
* The occasional race condition can happen where the onramp provider gives us completed status before the token balance has updated in our RPC.
377+
* We add this pause so the simulation doesn't fail on the next step.
378+
*/
379+
await new Promise((resolve) => setTimeout(resolve, 2000));
375380
setOnrampStatus("completed");
376381
// Add type field for discriminated union
377382
const typedStatusResult = {

packages/wagmi-adapter/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# @thirdweb-dev/wagmi-adapter
22

3+
## 0.2.145
4+
35
## 0.2.144
46

57
## 0.2.143

packages/wagmi-adapter/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,5 +55,5 @@
5555
"type": "module",
5656
"types": "./dist/types/exports/thirdweb.d.ts",
5757
"typings": "./dist/types/exports/thirdweb.d.ts",
58-
"version": "0.2.144"
58+
"version": "0.2.145"
5959
}

0 commit comments

Comments
 (0)