Skip to content

Commit

Permalink
fix web wallet connect regression
Browse files Browse the repository at this point in the history
  • Loading branch information
juliancwirko committed Apr 13, 2024
1 parent dc795e6 commit d316350
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### [0.19.1](https://github.com/useElven/core/releases/tag/v0.19.1) (2024-04-13)
- fix web wallet connect regression

### [0.19.0](https://github.com/useElven/core/releases/tag/v0.19.0) (2024-04-13)
- update @multiversx/sdk-core library (v13)
- **breaking**: with this version the @multiversx/sdk-core is now a peer dependency, you must have it in your project to work with useElven, at least v13.0.0. So, as always, freeze on 0.18.0 if you still need to use older sdk-core
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@useelven/core",
"version": "0.19.0",
"version": "0.19.1",
"description": "Core React hooks for MultiversX DApps",
"license": "MIT",
"author": "Julian Ćwirko <julian.io>",
Expand Down
4 changes: 1 addition & 3 deletions src/hooks/common-helpers/useDappProvidersSync.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -222,8 +222,6 @@ export const useDappProvidersSync = (
}
}
};
if (accountDone && loginInfoDone) {
askForDappProvider();
}
askForDappProvider();
}, [accountDone, loginInfoDone]);
};

0 comments on commit d316350

Please sign in to comment.