Current situation
My app is currently on IOS and Android. The IAP work correctly. Im under Flutter.
I used to purchase by requesting the product identifier (see below):
await Purchases.purchaseProduct(<product identifier>, type: PurchaseType.inapp);
Problem with new situation:
Now, I have several offering with multiple packages in RevenueCat.
So, I need to fetch the offering from RevenueCat when the app starts:
Offerings offerings = await Purchases.getOfferings();
Look at the Response, there is an error on the price shown by RevenueCat:

I end up with a different price sent by RevenueCat for the same product identifier :
- Price on Apple Connect: 2.99 EUR (Tier 3)
- Price on Smartphone in Production: 2.99 EUR
- Price on Response from RevenueCat SDK: 3.49 EUR (ERROR)
The issue is only with IOS.
I checked Apple Connect, the price is correct (see below) :

I checked the purchase on Production smartphone, the price is correct (see below) :

The error is only on RevenueCat when I fetch the offering.

Is someone know the issue ?