Skip to content

Commit

Permalink
show onbaording page by default
Browse files Browse the repository at this point in the history
Signed-off-by: Philemon Ukane <[email protected]>
  • Loading branch information
ukane-philemon committed Dec 6, 2023
1 parent 36be33c commit f5fe5e6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion ui/page/dcrdex/dcrdex_page.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ func NewDEXPage(l *load.Load, dexc *dexc.DEXClient) *DEXPage {

// Init splash page more info widget.
_, dp.splashPageInfoButton = components.SubpageHeaderButtons(l)
dp.inited = true // TODO: Set value
dp.inited = dexc != nil && len(dexc.Exchanges()) > 0
return dp
}

Expand Down
1 change: 1 addition & 0 deletions ui/page/dcrdex/dex_onboarding_page.go
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,7 @@ func NewDEXOnboarding(l *load.Load, core clientCore) *DEXOnboarding {

pg.bondStrengthEditor.IsTitleLabel = false
pg.serverDropDown.Width = formWidth
pg.serverDropDown.MakeCollapsedLayoutVisibleWhenExpanded = true

pg.onBoardingSteps = map[onboardingStep]dexOnboardingStep{
onboardingSetPassword: {
Expand Down

0 comments on commit f5fe5e6

Please sign in to comment.