Skip to content

Commit

Permalink
2.20.1 (#913)
Browse files Browse the repository at this point in the history
* fix double login with providers (#912)

* fix double login with providers

* regenerate yarn lock

* reset version

* 2.20.1

* changelog
  • Loading branch information
andreigiura committed Sep 8, 2023
1 parent 30acba9 commit a34aba8
Show file tree
Hide file tree
Showing 4 changed files with 387 additions and 380 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

[v2.20.1]](https://github.com/multiversx/mx-sdk-dapp/pull/913)] - 2023-09-08
- [Fix double login when session is invalid and user is loggedout](https://github.com/multiversx/mx-sdk-dapp/pull/912)
## [[v2.20.0]](https://github.com/multiversx/mx-sdk-dapp/pull/911)] - 2023-09-07

- [Add batch transactions documentation](https://github.com/multiversx/mx-sdk-dapp/pull/909)
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": "@multiversx/sdk-dapp",
"version": "2.20.0",
"version": "2.20.1",
"description": "A library to hold the main logic for a dapp on the MultiversX blockchain",
"author": "MultiversX",
"license": "GPL-3.0-or-later",
Expand Down
1 change: 1 addition & 0 deletions src/reduxStore/slices/loginInfoSlice.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ export const loginInfoSlice = createSlice({
state: LoginInfoStateType,
action: PayloadAction<LoginActionPayloadType>
) => {
state.isLoginSessionInvalid = false;
state.loginMethod = action.payload.loginMethod;
setLoginExpiresAt(getNewLoginExpiresTimestamp());
}
Expand Down
Loading

0 comments on commit a34aba8

Please sign in to comment.