diff --git a/v2/cmd/wails/internal/commands/initialise/templates/templates/svelte/app.tmpl.go b/v2/cmd/wails/internal/commands/initialise/templates/templates/svelte/app.tmpl.go index 2a1fb32e..7c028c5c 100644 --- a/v2/cmd/wails/internal/commands/initialise/templates/templates/svelte/app.tmpl.go +++ b/v2/cmd/wails/internal/commands/initialise/templates/templates/svelte/app.tmpl.go @@ -20,7 +20,6 @@ func NewApp() *App { func (b *App) startup(runtime *wails.Runtime) { // Perform your setup here b.runtime = runtime - runtime.Window.SetTitle("{{.ProjectName}}") } // shutdown is called at application termination diff --git a/v2/cmd/wails/internal/commands/initialise/templates/templates/vanilla/app.tmpl.go b/v2/cmd/wails/internal/commands/initialise/templates/templates/vanilla/app.tmpl.go index ae5bff26..9c5ff006 100644 --- a/v2/cmd/wails/internal/commands/initialise/templates/templates/vanilla/app.tmpl.go +++ b/v2/cmd/wails/internal/commands/initialise/templates/templates/vanilla/app.tmpl.go @@ -20,7 +20,6 @@ func NewApp() *App { func (b *App) startup(runtime *wails.Runtime) { // Perform your setup here b.runtime = runtime - runtime.Window.SetTitle("{{.ProjectName}}") } // shutdown is called at application termination