Here is my dropdow from a form:

It contains 'Pensions' and 'Pensions - PFI' as value.
There is the code for the email sending action I want to do when a button is clicked:
If(DataCardValue38_2.SelectedText.Value="Pensions - PFI";ForAll('Pensions - PFI';Office365Outlook.SendEmailV2(ThisRecord.Nom;"Nouvelle fiche RA1 Pensions - PFI";"Body"));
ForAll(Pensions;Office365Outlook.SendEmailV2(ThisRecord.Nom;"Nouvelle fiche RA1 Pensions";"Une fiche RA Pensions a été créée ou modifiée. Voici la description courte de la fiche: "&DataCardValue16_2.Text))
)))
But when I change 'Pensions - PFI' to 'Pensions', power apps think that the value is still 'Pensions - PFI' and it's sending a email with 'Pensions - PFI'. How can I do for my app in order to have the value up to date?
Thank you.