Ionic 4 modal error

i am getting error when i click on prescription here i am using model i dont know what error it is from past 1 week having this issue can anyone know the solution…

The error is pretty clear. You did not add the modal component to it’s module’s entryComponent array. Please add that.

2 Likes

can you tell me in which module i have to add my modal page is PrescriptionPage and calling page is ViewOrderPage

You have to add it to your modal pages module. So in your case this would be the PrescriptionPageModule.

1 Like

i solve my problem thanks i have added this is code
entryComponents:[ViewOrderPage,PrescriptionPage],
in my view orderpage module and it works thank you so much