This works.
WindowGroup("About My App", id: "about") {
AboutView()
}
.defaultPosition(.center)
.windowResizability(.contentSize)
A WindowGroup
will instantiate a brand new window at the default position each time it is opened, whereas a Window
will retain its previous position.