@2Jumper3
I was experiencing this issue before even adding any destinations to my NavigationPath.
Switching from NavigationPath to add my routes to an array of Routes resolved my issue. Hope this helps.
From:
var path = NavigationPath()
To:
var path: [Route] = [Route]()