Hi,
I'm trying to get some response from power automate flow, but in powerApp i always has empty record.
Ok, what have i done so far:
I've a flow triggered from power apps which has some parameters and run child flow, flows seems to work as expected:

But when i run flow form power apps by that code:
UpdateContext({ InitializeApprovalResult: InitializeApproval.Run());
And try to make same conditional action on this:
If(InitializeApprovalResult.success, "something1", "something2");
Nothing happend, neither negative or positive condition result.
Additionaly my record variable after run flow is always empty:

I tried use UpadteContext() and Set() functions but i changes nothing ?
What i am doing wrong ?
Any thoughts on this?