Hi,
i was able to produce the same issue, and by editing @FragmentParam(“patientId”) to @RequestParam(“patientId”) i can get it to work and display the fragment in the patient section editing but not in the registration app because there is no patientId at the moment and the parameter is required by default.
is changing it to @RequestParam(“patientId”, required=false) is the best way ?, or it should be set up in a different way for patient registration.