Dear Community,
I am using the App.StartScreen to check current user's AD membership so I could decide whether to hide or show a button.
I am following the offical Microsoft Learn Link here doing exact same thing.
Basically, I need to have the following expression.
If(
!IsEmpty(
AzureAD.CheckMemberGroups(
User().Email,
["Enter your Azure group ID here"]
).Value
),
Set(varAdmin,true),
Set(varAdmin,false)
)
Basically if I insert the same PowerFx expression now, it doesn't recognize the AzureAD function.

I have added the connector as well.

What am I missing?
Even thought Microsoft has rebranded AAD to Entra ID, it wouldn't deprecate the AzureAD function.
Thank you all.