I have some Test actions setup in Xcode cloud.
Under Post-Actions I have selected Notify - Success and Failures.
At the bottom it says:
You automatically receive email or Slack notifications for your builds
Yet I don't receive any emails...
If I add an email address to the Notify section, I now receive 2x emails. 1 to the email I added and 1 to the email on my account. If I change the added email to be the same as the one on my account, I get 2x emails to that address. This is as expected.
However if I remove the added email, I get no emails at all, whereas i'd expect to receive an email to my account address.
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
I'm using a NavigationSplitView on macOS which needs to show 2 or 3 columns depending on the selection of the sidebar.
Column 1 has a list of main activities. Some of these just have some data to show and some have a sublist.
Currently, when an item that has no sublist is selected, I set the 2nd column (content:) to:
Spacer()
.navigationSplitViewColumnWidth(0)
This works, although it started hitting bugs requiring a workaround on macOS 26, which got me wondering, what is the correct approach here?
NavigationSplitViewVisibility.doubleColumn is not the solution, as this hides column 1, not column 2.