Skip to content

Commit fe09271

Browse files
committed
react 1.0.13
1 parent 3259986 commit fe09271

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

ts/react/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ts/react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@openmesh-network/xnode-manager-sdk-react",
3-
"version": "1.0.12",
3+
"version": "1.0.13",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/Openmesh-Network/xnode-manager-sdk.git"

ts/react/src/request.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,9 @@ export async function awaitRequest({
7777
let request_info: xnode.request.request_info_output | undefined;
7878
while (!request_info?.result) {
7979
await new Promise((resolve) => setTimeout(resolve, pollInterval ?? 1000));
80-
request_info = await xnode.request.request_info(request);
80+
request_info = await xnode.request
81+
.request_info(request)
82+
.catch(() => undefined);
8183
}
8284

8385
return request_info;

0 commit comments

Comments
 (0)