Skip to content

Commit

Permalink
fix: Single window app model (#90)
Browse files Browse the repository at this point in the history
This change switches from a window group for the browser window to a
single window app. This simplifies the application lifecycle during
development and better matches my own personal expectations. We can
switch back to a window group if there's demand.
  • Loading branch information
jbmorley authored Jul 6, 2024
1 parent 72b0f5a commit a9f5db7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Reconnect/ReconnectApp.swift
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ struct ReconnectApp: App {
}
}

WindowGroup("My Psion") {
Window("browser", id: "My Psion") {
ContentView(applicationModel: applicationModel)
}
.environment(applicationModel)
Expand Down

0 comments on commit a9f5db7

Please sign in to comment.