Hey guys,
WarrenBelz send me into this Forum
So here is my Question. Im using a Powerapp and when i click on the button in Powerapps all the Data are getting collected via HTML and converted into a PDF. Inthe end im sending a static respont to Powerapps so i know that everything is working correctly
But when i analyze if the flow is working correctly thi sis what i get:

"ActionResponseSkipped. The execution of the "To_Power_App_or_Response" template action is skipped: The client application is not waiting for a response from the service."
and in the app i use this:
Set(
vFlowRun;
MakePDF.Run(
HtmlText1.HtmlText;
TextInput1
).return
);;
If(
vFlowRun = "false",
Notify("Your Flow has run",NotificationType.Success);
Notify("Your Flow has failed",NotificationType.Error)
)and this is the error message in the powerapp:

so it looks like the powerapp doesnt get the respont from the flow and thats why it tells that the flow didnt work out the right way
Thanks in advance for your guidance!
Christan