Hello @Michal Durista ,
I understand that Single Sign-Out does not work when using MSAL and Entra Front-Channel Logout. When you click the 'Logout' button from the Home component in app1, you are successfully logged out of app1, but nothing happens in app2 (and vice versa). However, you noticed that app1 shows the following error in the console: Refused to display 'https://mytenant.ciamlogin.com/' in a frame because it set 'X-Frame-Options' to 'deny'.
You are getting this error because the X-Frame-Options and content-security-policy header is a security measurement against clickjackingthe thing is, not all browsers have an implementation that takes that header into consideration when processing a returned response.
Microsoft Entra ID does not allow the sign-in pages to render inside of an iFrame. This is not a configurable option and we do not allow any exceptions. For more information see https://github.com/AzureAD/microsoft-authentication-library-for-js/blob/dev/lib/msal-browser/docs/iframe-usage.md
So you have to configure the X-frame-Options to "SAMEORIGIN" or "ALLOW-FROM".
For additional Information you can follow: https://support.microsoft.com/en-US/office/mitigating-framesniffing-with-the-x-frame-options-header-1911411b-b51e-49fd-9441-e8301dcdcd79
Hope this information helps. Let us know if you have any additional queries. Happy to assist you further.