diff --git a/src/app/core/services/Auth/auth-store.service.ts b/src/app/core/services/Auth/auth-store.service.ts index 98712bcc4..3c204d4a7 100755 --- a/src/app/core/services/Auth/auth-store.service.ts +++ b/src/app/core/services/Auth/auth-store.service.ts @@ -45,9 +45,7 @@ export class AuthStoreService { tap(async (res) => { const fetchedBalance = await this.fetchBalance(); - const walletVersion = - this.tokenStorageService.getNewUserV2() === 'false' && - (fetchedBalance === 0.0 || res.data.migrated) + const walletVersion = fetchedBalance === 0.0 ? 'v1' : 'v2'; diff --git a/src/app/notifications/notification.component.css b/src/app/notifications/notification.component.css index cea1589e3..4a5810f1d 100755 --- a/src/app/notifications/notification.component.css +++ b/src/app/notifications/notification.component.css @@ -218,7 +218,7 @@ input[type='search']::-webkit-search-cancel-button { border-bottom: 0.25px solid rgba(117, 117, 143, 0.3) !important; /* should add an hr under the ng for for the lline better than use border-bottom */ - width: 35vw; + width: 725px; /* the border bottom take the width of the div which is actually 50% of the view port to increase the border we should increase the width for the div */ /* if there is some problem with the design please comment the line 221 */ }