popup refresh issue after login

This commit is contained in:
Jatin_Chugh
2023-06-22 16:13:34 +05:30
parent 733ca86c0a
commit feab04d227

View File

@@ -166,9 +166,11 @@ export class AppService implements OnDestroy {
if (isReady) {
this.loadRepositoryStatus();
this.loadUserProfile();
setTimeout(() => {
this.openMobileAppDialog();
});
if (document.readyState === 'complete') {
setTimeout(() => {
this.openMobileAppDialog();
}, 10000);
}
}
});