When I set up a toolbar item group with multiple options and set the controlGroupStyle as .palette, and when one of the options are supposed to present a view controller, I get the following error Attempt to present on (from ) which is already presenting <_UIContextMenuActionsOnlyViewController: 0x1035c19d0>. So basically the context menu we see is under the hood a view controller that is being presented. Is there a right way of fixing it, or is it maybe something that will be fixed by Apple? This is how I set up the ToolbarItemGroup on SwiftUI and the view model ultimately presents another UINavigationController that has a UIHostingController as its view controller: .toolbar { ToolbarItemGroup(placement: .topBarTrailing) { Button(ft_commons_edit.localised, systemImage: pencil) { viewModel.didTapEditAction() } Button(ft_commons_delete.localised, systemImage: trash) { viewModel.didTapDeleteAction() } } label: { Image(edit-icon) .resizable() .frame(width: 24.0, height: 24.0) } } .controlGroupSt
6
0
607