I am getting the following debug message:
"Update NavigationAuthority bound path tried to update multiple times per frame."
Does anyone know how to resolve the output message?
I can't find anything online about how to resolve this message, and it only started appearing when I added the following NavigationLink:
var body: some View {
getViewFor(state: viewmodel.state)
.navigationTitle("NYC schools")
.toolbar{
NavigationLink("Settings") {
SettingsView()
}
}
}