Skip to content

Commit

Permalink
update default rate
Browse files Browse the repository at this point in the history
  • Loading branch information
maxence-charriere committed Oct 31, 2023
1 parent 4b63652 commit e89c91b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pkg/app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ func RunWhenOnBrowser() {
)

engine.Navigate(window.URL(), false)
engine.Start(30)
engine.Start(60)
}

func displayLoadError(err any) {
Expand Down
4 changes: 2 additions & 2 deletions pkg/app/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -659,9 +659,9 @@ func (m nodeManager) NotifyComponentEvent(ctx Context, root UI, event any) {
}

case appUpdate:
if updater, ok := element.(AppUpdater); ok {
if appUpdater, ok := element.(AppUpdater); ok {
ctx.addComponentUpdate(element)
updater.OnAppUpdate(ctx)
appUpdater.OnAppUpdate(ctx)
}

case appInstallChange:
Expand Down

0 comments on commit e89c91b

Please sign in to comment.