I have been using ${Security.IsInRole("groupname")} to control visibility of a button in a Blazor app for years, but it has quit working. Security is set to use Azure AD and it appears by looking at the Entra ID logs that the user is getting authenticated correctly - they are able to log into the app with no problems. It just seems like the user's group names are no longer getting enumerated.
I have read several articles where it is suggested to use the format @Security.IsInRole(new string {"groupname"}), but this doesn't seem to work either. Has something changed...not sure how this was working and then stopped.