@Reducer(state: .equatable, action: .equatable)
enum Path {
case manageRoutines(RoutinesManagement)
case routineCategoryDetails(RoutineCategoryDetails)
}
when I receive an action from manageRoutines state I need to update second routineCategoryDetails state which is in navigation stack. But I can't seem to find a way to access state. is there any way?