Hello,
Since a while, I started to create my own PowerApps Components.
Recently, I created a component that answers the need of formatting phone numbers for one of my clients. My component contains two parts, a select element that allows to select a phone code and a text field that contains the actual phone number. The output result is the addition of the phone code and the phone number (the output of the screen below is +49123456789)

The component works perfectly inside the PCF test environment.
I imported on the client development environment, no problems.
Since the component is installed in production environment, once in five, the component doesn't load the CRM field value. If I look at the context in the init() or updateView() functions, there is no traces of a value. I have to refresh the page for the component to load the value.

In the screen above, I get the context :
this._context = context;
Then I call the function : this.initializePhoneNumber();

Into the initialization function, the code below returns null once in five.
this._context.parameters.phoneNumberValue.formatted;
Here is how I declare the property in the manifest file:

Have you ever seen this kind of issues ? Is it possible that the huge amount of data in the production environment takes to much time to load, which cause the component to load before it can access that data ?
Thank you for considering this question.
Regards,
Anthony Ferry