I've had similar issue. When clicking NavigationLink there was an infinite init loop. It appears to be caused by initiating a class object labeled as @State instead of @StateObject.
@State var viewModel = PortalSelectionViewModel()
corrected to
@StateObject var viewModel = PortalSelectionViewModel()
Post
Replies
Boosts
Views
Activity
Do you have any code in AppDelegate "didFinishLaunchingWithOptions"? I'm unsure if this is intended behavior or a bug but recently code in "didFinishLaunchingWithOptions" is being run during App Warming without the ability to execute some code.
See: https://developer.apple.com/forums/thread/667959?answerId=693810022#693810022