Handle preference alerts from the PlatformsListView

This commit is contained in:
Daniel Chick 2024-01-04 22:01:18 -06:00
parent 2184c872d3
commit 4d95a270ae

View file

@ -81,6 +81,9 @@ struct XcodesApp: App {
Window("Platforms", id: "platforms") {
PlatformsListView()
.environmentObject(appState)
.alert(item: $appState.presentedPreferenceAlert, content: { presentedAlert in
alert(for: presentedAlert)
})
}
#endif
}