Skip to content

Commit

Permalink
Try not waiting for WC
Browse files Browse the repository at this point in the history
  • Loading branch information
gaudren committed Nov 1, 2024
1 parent c56dfb2 commit 29fa6dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ function main() {

rpcMap: rpcMap,
});
await provider.connect();
provider.connect();

Check failure on line 388 in client/src/index.ts

View workflow job for this annotation

GitHub Actions / Tests

Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator

await run(provider);
}),
Expand Down

0 comments on commit 29fa6dd

Please sign in to comment.