Skip to content

Commit 630b399

Browse files
authored
Merge pull request #1767 from wavesplatform/dexw-2332-dex-moving-notification
Dexw 2332 dex moving notification
2 parents d9ae797 + 9ab01be commit 630b399

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

src/modules/app/directives/componentWarningPlate/ComponentWarningPlate.js

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
user.logoutSignal.on(this._initCanMoveAccounts, this);
5353

5454
utils.startTimer({ year: 2019, month: 12, day: 2, hours: 15 }, this._setTime.bind(this), 1000);
55-
55+
5656
this._getDistUrl();
5757
}
5858

@@ -87,7 +87,10 @@
8787
user.getFilteredUserList(),
8888
user.getMultiAccountData()
8989
]).then(([userList, multiAccountData]) => {
90-
if ((multiAccountData && user.isAuthorised) || (userList && userList.length)) {
90+
if (
91+
(multiAccountData && user.isAuthorised) ||
92+
(userList && userList.length && !multiAccountData)
93+
) {
9194
this.canMoveAccounts = true;
9295
} else {
9396
this.canMoveAccounts = false;

0 commit comments

Comments
 (0)