Skip to content

Commit

Permalink
Merge pull request #1836 from NguyenTranHoangSym/SDA-4143_bugfix_main
Browse files Browse the repository at this point in the history
SDA-4143: Adding bug fix
  • Loading branch information
NguyenTranHoangSym committed Apr 4, 2023
2 parents 2630092 + 635d19d commit a1db993
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/app/window-handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -254,9 +254,8 @@ export class WindowHandler {
this.isPodConfigured = !config.isFirstTimeLaunch();
this.didShowWelcomeScreen = false;
this.shouldShowWelcomeScreen =
!(this.globalConfig.url !== this.defaultUrl) ||
config.isFirstTimeLaunch() ||
!!this.config.enableBrowserLogin;
this.globalConfig.url.includes(this.defaultUrl) &&
(config.isFirstTimeLaunch() || !!this.config.enableBrowserLogin);

this.windowOpts = {
...this.getWindowOpts(
Expand Down

0 comments on commit a1db993

Please sign in to comment.