There is no selected record in your gallery as the one from before is deleted.
If your Item for that form is galConsultantMEP1, then it needs to become something like:
If(Len(galConsultantMEP1.Selected.Title)=0, First(tblConsultantMEP), galConsultantMEP1.Selected)
otherwise if you don't want it to show that then you need to force the gallery to reset so that an item is selected, so on your delete button put:
Remove(tblConsultantMEP,galConsultantMEP1.Selected);
UpdateContext({varShowDeleteScreen:false});
Reset(galConsultantMEP1);